Skip to content

cowgoat88/repic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installing MySQL locally

ASSUMING YOUR VIRTUALENV IS RUNNING

  1. brew install mysql
  2. brew install openssl
  3. 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
  1. source ~/.bash_profile
  2. create root user: mysqladmin -u root password {yourpasswordhere}
  3. start the mysql local instance: brew services start mysql
  4. (optional) log on to local mysql mysql -u root -p {type your password on the next line}
  5. Install the django mysqlclient pip install mysqlclient
  6. Update your settings file to connect to your local db