Skip to content

Instantly share code, notes, and snippets.

@simonbs
Last active March 15, 2023 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonbs/92c0a3bfac3b62e86dd83ebbb85cc709 to your computer and use it in GitHub Desktop.
Save simonbs/92c0a3bfac3b62e86dd83ebbb85cc709 to your computer and use it in GitHub Desktop.
Installing a specific version with Homebrew

Installing a specific version with Homebrew

The Internet has documented several ways of installing a specific version of a piece of software using Homebrew. None of them seem to work anymore. It seems like a feature that the developers of Homebrew do not want to support fully or at all.

A way of installing a specific version is by executing the following commands. The following assumes that we want to install version 3.24.0 of a package named foo.

Start by creating a new tap. The tap can contain multiple formula so we name it something generic.

brew tap-new simonbs/extracted

Then extract the formula into the local tap.

brew extract foo simonbs/extracted --version 3.24.0

Finally, install the package.

brew install simonbs/extracted/foo@3.24.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment