如何通过 Brew 在 Mac 上安装 MySQL 5.7.23
How to install MySQL 5.7.23 on Mac via Brew
我无法在 mac 上安装特定的子版本 5.7.23,但是我只能安装 MySQL 5.7,这是我不想要的。有任何想法吗?我正在使用 macOS10.15.4
brew install mysql@5.7.23
Error: No available formula with the name "mysql@5.7.23"
==> 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.
由于自制核心版本化公式 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.
最新的mysql@5.7
指向mysql@5.7 5.7.31
。 GitHub PR reference
您应该可以将最新的 5.7.x 系列与 brew install mysql@5.7
或 brew upgrade mysql@5.7
(如果您已经安装)一起使用。
我无法在 mac 上安装特定的子版本 5.7.23,但是我只能安装 MySQL 5.7,这是我不想要的。有任何想法吗?我正在使用 macOS10.15.4
brew install mysql@5.7.23
Error: No available formula with the name "mysql@5.7.23"
==> 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.
由于自制核心版本化公式 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.
最新的mysql@5.7
指向mysql@5.7 5.7.31
。 GitHub PR reference
您应该可以将最新的 5.7.x 系列与 brew install mysql@5.7
或 brew upgrade mysql@5.7
(如果您已经安装)一起使用。