美文网首页
django makemigrations 报错django.c

django makemigrations 报错django.c

作者: 西亭月圆 | 来源:发表于2020-02-25 14:36 被阅读0次

背景:

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版本可解决

pip install mysqlclient==1.4.5

相关文章

网友评论

      本文标题:django makemigrations 报错django.c

      本文链接:https://www.haomeiwen.com/subject/xbhtchtx.html