Data2Dollars
Data2Dollars

Reputation: 821

Why won't MySQL 8.0.28 install on macOS 12 Monterey?

I downloaded the community version of MySQL but it won't install on macOS. How come?

MySQL 8.0.28-community can’t be installed on this computer.

Upvotes: 10

Views: 47663

Answers (5)

yemy
yemy

Reputation: 838

As an workaround you also could consider getting mysql from brew with brew install mysql.

Upvotes: 7

Oneth Kahandawa
Oneth Kahandawa

Reputation: 131

I got the error below :

"mysql-8.0.31-macos12-x86_64.pkg” cannot be opened because it is from an unidentified developer."

Below steps resolved this issue on my mac m1.

  1. Download the x86 version(DMG) for Mac M1.
  2. Double click the DMG and it'll open the .pkg file.
  3. Rather than double clicking on the .pkg file, right click and open the package.

Upvotes: 9

chicacode
chicacode

Reputation: 71

This works for me: To download the MySQL Community Server, go to MySQL Community Downloads page and click Download button for macOS 11 (ARM, 64bit), DMG Archive. This will download the MySQL Community Server version 8.0. 27 file in your macOS' Download folde

Upvotes: 2

aidelojep
aidelojep

Reputation: 7

I encountered the same issue. I was able to resolve it by downloading the x86 version on my Macbook

Upvotes: -1

Raptor
Raptor

Reputation: 54212

Since the introduction of Apple M1 CPU, software like MySQL provided 2 versions for Apple M1 CPU (arm) and Intel CPU (x86).

Please make sure you downloaded the right version.

Upvotes: 31

Related Questions