-
Notifications
You must be signed in to change notification settings - Fork 435
Home
Rabih Kodeih edited this page Aug 2, 2018
·
5 revisions
First thing download desired version of mysql from Oracle's site and double click the dmg file so it installs normally.
Make sure mysql server is running :
/usr/local/mysql/bin/mysql -uroot -p
Exit and then add the following environment variable to your ~/.bash_profile:
PATH="/usr/local/opt/mysql-client/bin:$PATH"
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib:$DYLD_LIBRARY_PATH
Now
brew install mysql-connector-c
brew install mysql-client
source ~./bash_profile
env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip3 install mysqlclient==1.3.9
And you are done.