0

I'm unable to install the specific sub version 5.7.23 on mac, however I'm able to install just MySQL 5.7, which is something i don't want. Any ideas? I'm using macOS10.15.4

brew install [email protected]
Error: No available formula with the name "[email protected]"
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.
chenrui
  • 8,910
  • 3
  • 33
  • 43
amateur
  • 941
  • 4
  • 22
  • 33

1 Answers1

2

Due to homebrew-core versioned formulae support policy:

Versioned formulae should differ in major/minor (not patch) versions from the current stable release. This is because patch versions indicate bug or security updates, and we want to ensure you apply security updates.

The latest [email protected] points to [email protected] 5.7.31. GitHub PR reference

You should be able to use the latest 5.7.x series with brew install [email protected] or brew upgrade [email protected] (if you already installed it).

chenrui
  • 8,910
  • 3
  • 33
  • 43