[Fixed]-Django with mysql – get error loading mysqldb module

1👍

You can use mysqlclient , it supports Python3 .You can read about it in django docs.

0👍

If
pip install MySQL-python
is failing, you can try
easy_install MySQL-python.

Also install this: sudo apt-get install python-mysqldb

0👍

Solved by running the following command:
pip install mysqlclient

Leave a comment