Search code examples
pythonmysqldjangomysql-python

Python3 + MySql: Error loading MySQLdb module: No module named 'MySQLdb'


I am new to Python and trying to setup a Django project to work with MySql. I have read through the documentation as well as some other StackOverflow posts about the topic, but I still can't get it to work.

When I try to run a migrate in Django I get the following error:

Error loading MySQLdb module: No module named 'MySQLdb'

I have installed the recommended MySql Python Connector (2.0.1) selecting Ubuntu (since I am on Mint Linux). It installs correctly. I still get the error. I don't need to add this library to the project or anything, right? It looks like python should just be aware of this and run successfully. What can I do? Thanks.

EDIT: I forgot to mention: I am running Python 3.4 - a lot of typical solutions are still using 2.7, so they don't work and all the solutions with 3.0 I have tried without success.


Solution

  • I would need to see your DATABASES configuration in settings.py, but it looks like it is trying to load MySQLDB instead of the Mysql Python Connector that you installed. The DATABASES should look something like this:

    DATABASES = {
        'default': {
            'NAME': 'mydatabase',
            'ENGINE': 'mysql.connector.django',
            'USER': 'myuser',
            'PASSWORD': 'secretpassword',
            'OPTIONS': {
              'autocommit': True,
            },
        }
    }
    

    Note the ENGINE part... that tells Django to use the mysql connector instead of MySQLDB...

    more info available here: http://bunwich.blogspot.com/2014/02/finally-mysql-connector-that-works-with.html http://dev.mysql.com/doc/connector-python/en/connector-python-django-backend.html

    and if you are expecting to use South:

    www.pythonanywhere.com/wiki/UsingMySQL

    You may want to note that the Oracle connecter is GPL, and there may be license issues with using that code. See Here:

    groups.google.com/forum/#!topic/django-developers/8r_RVmUe5ys

    The Django 1.7 documentation recommends using the mysqlclient driver...

    docs.djangoproject.com/en/1.7/ref/databases/ --see the section on Mysql DB API Drivers

    pypi.python.org/pypi/mysqlclient for that client...

    -Scott