Install Homebrew, the powerful macOS package manager, with a single Terminal command. Perfect for setting up development environments or automating fresh macOS configs.
Open your Terminal and run this command:
This script will:
git
, wget
, etc.)Command (⌘) + Space
Terminal
Return
Applications > Utilities
After the script completes, run:
brew doctor
You should see: Your system is ready to brew.
To confirm version:
brew --version
Once Homebrew is ready, you can enhance your system with:
brew install git wget zsh node python3
Or install casks for apps:
brew install --cask visual-studio-code iterm2 google-chrome
Set up your favorite tools in seconds using a Brewfile
:
brew bundle --file=~/Brewfile
Homebrew is now installed and ready to use. Easily manage packages, tools, and apps from the Terminal — the macOS way developers love.
🍻 Cheers to a better command-line experience!