DEV Community

Cover image for Install Homebrew on OSX
Adam K Dean
Adam K Dean

Posted on

Install Homebrew on OSX

To install Homebrew on OSX, simply run this command in your terminal:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Enter fullscreen mode Exit fullscreen mode

Now test it works:

brew --version
Enter fullscreen mode Exit fullscreen mode

Before using it to install anything, be sure to quickly run:

brew doctor
Enter fullscreen mode Exit fullscreen mode

For more information on Homebrew, visit the Homebrew wiki.

Top comments (0)