22

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.

skaz
  • 21,962
  • 20
  • 69
  • 98
  • I had luck using: https://github.com/nakagami/django-cymysql/ But I would prefer to use the "official" connector. Or am I thinking about this wrong? – skaz Oct 25 '14 at 09:32
  • There are a lot of similar questions here "python3 mysql" http://stackoverflow.com/search?q=python3+mysql I recommend you try https://github.com/davispuh/MySQL-for-Python-3 – madzohan Oct 25 '14 at 09:52
  • possible duplicate of [Can I use MySQL on Django(dev 1.6.x) with Python3.x?](http://stackoverflow.com/questions/13320343/can-i-use-mysql-on-djangodev-1-6-x-with-python3-x) – madzohan Oct 25 '14 at 09:56
  • 1
    I've tried to make it clear that I have searched these answers and the recommended answers didn't work for me. – skaz Oct 25 '14 at 10:14
  • I have already answered this , refer following link: https://stackoverflow.com/a/58084705/9974063 – Omkar Darves Sep 24 '19 at 16:44

5 Answers5

28

None of the existing answers worked for me on Ubuntu Server 16.04 so I ran:

sudo apt-get install libmysqlclient-dev
sudo -H pip3 install mysqlclient

The first command get me the mysql config needed by the second command.

Dan-Dev
  • 8,957
  • 3
  • 38
  • 55
20

pip install mysqlclient works for me python3.5

Pegasus
  • 1,398
  • 15
  • 20
  • 1
    There's a MAJOR caveat here. In most Linux systems you'll have Python 3.x AND Python 2.7. As such `pip` will attempt to install on 2.7 (which won't help you with Python 3). You'll need to use `pip3` to get it into Python 3, as Dan-Dev's answer mentions – Machavity May 21 '20 at 14:17
15

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

brsbilgic
  • 11,613
  • 16
  • 64
  • 94
Scott Sharkey
  • 166
  • 2
  • 5
  • 10
    django.core.exceptions.ImproperlyConfigured: 'mysql.connector.django' isn't an available database backend. Try using 'django.db.backends.XXX', where XXX is one of: 'mysql', 'oracle', 'postgresql_psycopg2', 'sqlite3' – e18r Mar 04 '15 at 02:26
13

If you can install pymysql -- which works well for me with Python 3.4 -- then add these lines to your manage.py file in Django:

try:
    import pymysql
    pymysql.install_as_MySQLdb()
except ImportError:
    pass

This will make pymysql function like MySQLdb and worked for me.

0

pip install mysqlclient works for me python'3.9.13'