0

What's the way of installing a package with fixed version in brew? I would run something like the following command, but my tryings didn't work.

brew install package -v 1.2.3
Nucc
  • 1,001
  • 6
  • 19
  • possible duplicate of [Homebrew install specific version of formula?](http://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula) – Gergo Erdosi Jul 08 '14 at 17:21
  • Is there only one formula for each package? So you can't fix the version? – Nucc Jul 08 '14 at 17:41

1 Answers1

1
brew install mysql@5.7

Will install version 5.7 of MySQL rather that the latest version.

IanH
  • 86
  • 1
  • 10