Reputation: 821
I downloaded the community version of MySQL but it won't install on macOS. How come?
Upvotes: 10
Views: 47663
Reputation: 838
As an workaround you also could consider getting mysql from brew with brew install mysql
.
Upvotes: 7
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.
Upvotes: 9
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
Reputation: 7
I encountered the same issue. I was able to resolve it by downloading the x86 version on my Macbook
Upvotes: -1
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