背景:
django已配置mysql,且已安装mysqlclient(当前最新版本,1.4.6),但makemigrations时报错:
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?
解决办法:
版本兼容问题,卸载原有mysqlclient
pip uninstall mysqlclient
查看mysqlclient历史版本:
https://pypi.org/project/mysqlclient/1.4.6/#history
选择低一个版本号安装,若仍报错,再安装更低的版本
本次安装1.4.5版本可解决
网友评论