Skip to content

Instantly share code, notes, and snippets.

@chowdhary987
Forked from shibli049/mysqldb_python3.sh
Created October 31, 2018 16:31
Show Gist options
  • Save chowdhary987/2ce01c6a0ab10abab38d060863a5b3d7 to your computer and use it in GitHub Desktop.
Save chowdhary987/2ce01c6a0ab10abab38d060863a5b3d7 to your computer and use it in GitHub Desktop.
Install mysqlclient for python3
#sudo pip3 install mysqlclient fails with mysql_config not found
sudo apt-get install libmysqlclient-dev
#without pip3 it will not going to work for python3
sudo pip3 install mysqlclient
# to run django migration
python3 manage.py migrate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment