DEV Community

Ariel Mejia
Ariel Mejia

Posted on

Install Homebrew in MontereyOS

Short and to the point!

Install brew

In the terminal just type this command:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Enter fullscreen mode Exit fullscreen mode

Two additional commands

Sometimes the installation proccess requires to add two more commands, this is something that the brew installation command output returns, here mine:

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/<your-machine-username>/.zprofile
Enter fullscreen mode Exit fullscreen mode
eval "$(/opt/homebrew/bin/brew shellenv)"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)