
If you are a Mac or a Linux user then homebrew (or simply called brew) is the most popular package manager that you will use on a day-to-day basis for installing tools and software that you will need for software development.
In this article I have tried to cover a list of commands that you should be aware of to make the best out of the brew.
1. --version Command
% brew --version
% brew -v
You can use either --version or -v to print out the version number of homebrew as well as homebrew-core and cask on the console.
Example Output:Homebrew 3.5.10
Homebrew/homebrew-core (git revision eb53464deb8; last commit 2022-09-04)
Homebrew/homebrew-cask (git revision 40c8fdd23d; last commit 2022-09-04)
2. Brew Update Command
% brew update
This command should be used to update your installed brew version to the latest version from GitHub as well as to keep your formulae list up to date.
You may use the update command with a few useful options,
- -f, --force
- -q, --quiet
- -v, --verbose
- -d, --debug
3. Brew Doctor Command
% brew doctor
% brew dr
The doctor command is quite a useful one to know of any potential problems.
Example:% brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: You are using macOS 13.
We do not provide support for this pre-release version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
pre-release version.
Warning: Ruby version 2.6.10 is unsupported on macOS 13. Homebrew
is developed and tested on Ruby 2.6.9, and may not work correctly
on other Rubies. Patches are accepted as long as they don't cause breakage
on supported Rubies.
Warning: /usr/bin occurs before /opt/homebrew/bin in your PATH.
This means that system-provided programs will be used instead of those
provided by Homebrew. Consider setting your PATH so that
/opt/homebrew/bin occurs before /usr/bin. Here is a one-liner:
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc
The following tools exist at both paths:
python3
pip3
4. Brew Help Command
The help command is the one that can help you quickly learn and understand brew commands and options.
% brew help
Example usage:
brew search TEXT|/REGEX/
brew info [FORMULA|CASK...]
brew install FORMULA|CASK...
brew update
brew upgrade [FORMULA|CASK...]
brew uninstall FORMULA|CASK...
brew list [FORMULA|CASK...]
Troubleshooting:
brew config
brew doctor
brew install --verbose --debug FORMULA|CASK
Contributing:
brew create URL [--no-fetch]
brew edit [FORMULA|CASK...]
Further help:
brew commands
brew help [COMMAND]
man brew
https://docs.brew.s
Example:
% brew help --version
Usage: brew --version, -v
Print the version numbers of Homebrew, Homebrew/homebrew-core and
Homebrew/homebrew-cask (if tapped) to standard output.
5. Search for formula
% brew search &l;formula-name>
6. List all Installed Formulae
% brew list
7. Install a formula
% brew install &l;formula-name>
8. Uninstall a formula
% brew uninstall &l;formula-name>
9. Find Outdated Formulae Command
10. Update Formulae Command
% brew upgrade <formula>
This command will upgrade outdated casks and formulae
% brew outdated
This command will list out outdated casks and formulae.
11. Pin and Unpin Formulae Command
% brew pin <formula>
% brew unpin <formula>
Pin to prevent the formula from being upgraded.
12. Get Information about a formula
% brew info <formula-name>
13. Cleanup
% brew cleanup --dry-run
The cleanup command with dry-run option will show what all outdated formulas will be cleaned up if you run the cleanup command if you do not want to clean a specific formula then you can pin it.
Example:% brew cleanup --dry-run
Would remove (empty directory): /opt/homebrew/etc/openssl@1.1/private
Would remove (empty directory): /opt/homebrew/etc/openssl@1.1/certs
% brew cleanup
Pruned 0 symbolic links and 2 directories from /opt/homebrew
Have Questions? Post them here!
- How to find path of file on Mac Terminal
- How to disable Siri on Mac Monterey
- [fix] macOS Ventura xcrun: error: invalid active developer path missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- Select Line Number TextEdit on Mac
- Go to Specific file path using Mac Finder
- How to find Java HOME in Mac Terminal
- bash: command not found error [macOS Terminal Linux, Unix or Windows]
- Must Know Homebrew Commands for Mac/Linux Users
- How to Insert an Inverted Question Mark on Mac ¿
- Hide Keyboard Text Input Icon on macOS Ventura Menu Bar
- How to make macOS Terminal window Transparent (or Opaque)
- How to check of Updates on Microsoft Edge Browser on Mac (macOS)
- Limit scrollback rows in macOS Terminal
- How to identify installed Java (JDK) Version on macOS
- Keyboard Shortcut to delete a file on a Mac [Macbook]
- Open Docker from Terminal Command on Mac
- Installing MongoDB on Linux/Unix/macOS/Ubuntu
- How to take a screenshot on a Mac - updated for Ventura 13 [updated 2023]
- ls: .: Operation not permitted - Mac Terminal ZSH Error
- How to remove username from Mac Menu Bar?
- macOS Ventura XCode Command Line Tools Installation
- Where is .zshrc file located in macOS
- How to Show Path of Files or App in Mac Spotlight Search
- How to enable root user on Mac Terminal
- Install Java 17 (LTS) JDK on ARM based M1/M2 Mac Natively
- How to Print from JavaScript HTML using window.print - JavaScript
- git fatal: Authentication failed error [fix] - Git
- Most Essencial AWS CLI 2 S3 ls Command Options - AWS
- Install Bash Completion on macOS - Bash
- List of Code Snippets/Templates to Eclipse IDE - Eclipse
- Installing brew on M1/M2 ARM Mac - MacOS
- Git Remove Untracked Files using Command - Git
- Check Android Studio App is M1/M2 Chip based post installation - Android-Studio