DEV Community

Cover image for How can I install Homebrew on MaOS?
Fabio C.
Fabio C.

Posted on

How can I install Homebrew on MaOS?

First of all, let's understand what Homebrew is and what things he adds to our daily.

What is Homebrew?

Homebrew installs the stuff you need that Apple (or your Linux system) didn’t.

Whit that we can easily install any package we are missing on our machine just using the terminal.

Let's go further and install it.

To install we only need to open terminal and past this line

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

With the Homebrew installed to add new "things" you only need to run the command like this:

brew install package-name
Enter fullscreen mode Exit fullscreen mode

To know more about Homebrew visit their page here

Top comments (0)