我安装在ubuntu服务器django 1.9.4和mysqlclient上,我不是在virtualenv下。
如果我运行manage.py shell或runserver一切顺利,但如果我尝试通过apache2和wgi我得到了这个错误:
ImproperlyConfigured: Error loading MySQLdb module: this is MySQLdb version (1, 3, 7, 'final', 1), but _mysql is version (1, 2, 3, 'final', 0)
Python 3.4版
这是apache2 vhost config:
WSGIPythonPath /usr/local/lib/python3.4/dist-packages/:/home/ubuntu/www/mysite
DocumentRoot / home / ubuntu / www / mysite ErrorLog $ {APACHE_LOG_DIR} /mysite.log CustomLog $ {APACHE_LOG_DIR} /access.log合并
WSGIScriptAlias / /home/ubuntu/www/mysite/mysite/wsgi.py
<Directory /home/ubuntu/www/mysite/mysite>
<Files wsgi.py>
Order deny,allow
Allow from all
Require all granted
</Files>
</Directory>
SOLUTION:
是一个包版本错误,我用以下命令解决了它:
sudo apt-get remove libapache2-mod-python libapache2-mod-wsgi sudo apt-get install libapache2-mod-wsgi-py3
答案 0 :(得分:0)
从错误消息中可以清楚地看到,系统上的mysql版本与MySQL-python-1.3.7不同。
尝试卸载MySQL-python并安装1.2.3版本。