ASSUMING YOUR VIRTUALENV IS RUNNING
- brew install mysql
- brew install openssl
- add this to ~/.bash_profile:
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/
nano ~/.bash_profile
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/
write the file with ctl o
exit with ctl x
- source ~/.bash_profile
- create root user:
mysqladmin -u root password {yourpasswordhere}
- start the mysql local instance:
brew services start mysql
- (optional) log on to local mysql
mysql -u root -p
{type your password on the next line} - Install the django mysqlclient
pip install mysqlclient
- Update your settings file to connect to your local db