How to know what packages are available with (home)brew

homebrewpackage-management

I am new to Mac coming from Ubuntu Linux background. How do I find out what packages are available for Homebrew? With Ubuntu I could search packages.ubuntu.com for example, or Google since its using apt

Best Answer

brew search lists all available formula (aka packages), requires you to install brew first of course.

Additionally, if you want to get further information about that package before installing it brew info <package name> will list relevant information like version number, dependencies etc.