Homebrew - One package manager to rule them all
permalinkIf you are on Mac and needed to install some kind of package or software the changes you came across Homebrew are about 99%.
Homebrew is a package manager for Mac, it makes it easy to install different software. Or even different versions of for instance PHP.
You use homebrew in your terminal, my favorite terminal is iTerm2.
Installing homebrew on Mac permalink
The installation is one of the easiest I've ever seen.
Open up your terminal and execute the following command.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
That will install the latest version of homebrew.
Using homebrew permalink
To use homebrew you can again open your terminal and run brew
commands.
A list of useful commands:
brew --version
: Display the installed version of homebrewbrew help
: Display the helpbrew doctor
: Check the system for potential issuesbrew update
: Fetch the latest homebrew versionbrew upgrade
: Upgrade all brews (packages)brew list
: List all installed packagesbrew install <formulae>
: install specific formulabrew services start <service>
: Start a specific service
Installing specific packages permalink
To install specific packages we can generally follow the following guide.
Note: this example uses httpd as the package, you can find all homebrew formulae's here
brew install httpd
Done... Literally, just that one command will install httpd and everything it needs.
In this case, since it's a service we can use homebrew to start it.
brew services start httpd
Amazing right!
If you are on Mac and not running homebrew, make the change today, it will change your life!
Thank you for reading, and let's connect! permalink
Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter