-
-
Save shibli049/00f8bf3843ab615474da to your computer and use it in GitHub Desktop.
#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 |
python3 manage.py migrate what's mean???
@ChyiYaqing : I forgot to mention, this command is to run Django migration. added in the file comment.
Thanks!
thanks you so much!
Thanks!
But it seems like I need yet another package on Ubuntu:
sudo apt-get install -y python3-mysqldb
(The pip install
command does work without it, but I still get an error when running Django commands like migrate
)
Thanks #farzadab
This was the code that work for me -
sudo apt-get install -y python3-mysqldb
Thanks. Saved my day
Perfect. It works now!
thanks a lot! installing python packages always like a dancing with a tambourine
Thanks!
i install MySQL with "sudo apt-get install -y python3-mysqldb" and it install but when I go to python3 and import MySQL return error "no module name MySQL"
my os is ubuntu, how I can fix it?
how to install mysqlclient this install time its getting error
No matching distribution found for setup.py like message it will through
Thanks it works for me
thanks! it works
same probleme
did you install mysqlclient?
recommend read and do this: https://pypi.org/project/mysqlclient/
thanks
++
Thanks, it works!