Skip to content

Instantly share code, notes, and snippets.

@andreymeretsky
Forked from shibli049/mysqldb_python3.sh
Created September 4, 2018 12:48
Show Gist options
  • Save andreymeretsky/98d9c6884b38554c1feff8be3b811990 to your computer and use it in GitHub Desktop.
Save andreymeretsky/98d9c6884b38554c1feff8be3b811990 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