On Wed, Jan 22, 2014 at 10:18 AM, Ankit Singh <[email protected]> wrote: > i got this error when trying to use pyhtobn manage.py syncdb what does it > mean? > File > "/home/user/it/local/lib/python2.7/site-packages/django/db/backends/mysql/base.py", > line 17, in <module> > raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e) > django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: > No module named MySQLdb
That you don't have MySQLdb installed. You need to install that: https://pypi.python.org/pypi/MySQL-python/1.2.4 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACwCsY4GWNH43Pq%3DD0qPAgVmsps-TopfN4uQKg856BQBGYDGjw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

