Instalar software como profesional
Los gestores de paquetes te permiten instalar, actualizar y eliminar software desde la terminal con un solo comando.
Por sistema operativo
| Sistema | Gestor | Instalación |
|---|---|---|
| macOS | Homebrew | Ver abajo |
| Linux | apt, dnf, pacman | Ya instalado |
| Windows | winget, scoop | winget ya viene incluido |
Homebrew (macOS)
Instalación
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Comandos esenciales
# Instalar programa
brew install git
# Instalar app gráfica
brew install --cask visual-studio-code
# Buscar paquetes
brew search docker
# Actualizar todo
brew update && brew upgrade
# Ver instalados
brew list
Windows: winget
# Buscar
winget search vscode
# Instalar
winget install Microsoft.VisualStudioCode
# Actualizar todo
winget upgrade --all
Linux: apt (Ubuntu/Debian)
# Actualizar lista
sudo apt update
# Instalar
sudo apt install git
# Actualizar todo
sudo apt upgrade
Qué instalar primero
# macOS
brew install git node pnpm python
# Windows
winget install Git.Git OpenJS.NodeJS Python.Python.3
# Linux
sudo apt install git nodejs npm python3
Enlaces útiles
- 📖 Homebrew
- 📖 Winget Docs