I can't connect with mysql and I can't do "python manage.py syncdb" on it
how to connect with mysql in django and django-cms without any error?
I can't connect with mysql and I can't do "python manage.py syncdb" on it
how to connect with mysql in django and django-cms without any error?
to connect to mysql with django
After that you should go to project path and then execute the following command, the same path of 'manage.py' file
Finally you may synchronous your database without problem
This is an error message you get if MySQLdb isn't installed on your computer.
The easiest way to install it would be by entering
pip install MySQL-python
into your command line.