Check package information installed by Homebrew

Pete Houston
1 min readMay 13, 2016

--

After installing a package using Homebrew, you can see the package information right away, it prints out to the stdout, such as: caveats, configuration, dependencies… Somehow, if you forget them, and want to look up the package information, what would you do?

Luckily, Homebrew provides an option to look up the information of installed packages, and just like this,

$ brew info [package_name]

detail of the package will be shown on terminal screen. I personally don’t remember much of configuration of many packages that I install on my machine, like nginx…and with this command, I can easily find out the nginx config file and start working without the need to remember anything.

--

--