It looks like you are just missing the mysql-python dependency for mysql and Django. I donβt know how you installed Django. Use pip or easy_install to install it.
pip install mysql-python
PostgreSQL is recommended for Django, but for development purposes, creating a sqlite database is much easier.
source
share