MacOS – How to install an homebrew formula without updating homebrew itself

command linehomebrewmacos

When I install or reinstall a formula, homebrew automatically update itself before installing the formula.

When working on a slow connection, this is annoying. How can I cancel this automatic update?

Best Answer

According to this github issue and to the man page, the environment variable HOMEBREW_NO_AUTO_UPDATE can be set to 1.

HOMEBREW_NO_AUTO_UPDATE=1 brew install <formula>

This will stop the homebrew update for this command. If you want to prevent auto update for your shell session, use:

export HOMEBREW_NO_AUTO_UPDATE=1

to set it permanently, add it to your ~/.bash_profile. Note that changing this permanently is discouraged by the developers.