MYSQL in mac with django
brew install mysql-client
brew install mysql-connector-c // OPTION I HAVE NOT DONE
echo 'export PATH="/usr/local/opt/mysql-client/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
echo 'export PATH="/usr/local/opt/mysql-client/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
IF YOU HAVE ZSH:
ELSE:
pip install mysqlclient
Comments
Post a Comment