Homebrew on mac : Homebrew is a package management system for your Mac. Homebrew makes it very easy to install any software which are generally needed for programming and development. Installing Homebrew is very simple and you will enjoy it.
You will need to open Xcode and choose Xcode -> Preferences and install the Command Line Tools. Everything I have explained it in video tutorial.
Run this Code in terminal and Homebrew will get Installed on your system
ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
brew –version
This command will show you the version of homebrew which you are running on your system.
brew doctor
This command will troubleshoot your Homebrew installation and will fix the errors.
brew update
This command will update your Homebrew formula list.
NOTE :- It would not update your Installed Packages
brew upgrade
This command will upgrade your installed packages.
brew search
This command will search for new packages which you want.
brew install [package name]
This command will install a software package onto your system.
brew list
This command will list all the packages that are currently installed on your system.
brew info [package name]
This command will get all the information about the package
brew uninstall [package name]
This command will remove a package you previously installed.