Skip to content

Instantly share code, notes, and snippets.

View shibli049's full-sized avatar

Tahmim Ahmed Shibli shibli049

View GitHub Profile
@shibli049
shibli049 / mysqldb_python3.sh
Last active April 23, 2023 05:48
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