报错解决方案:mysqlclient 1.3.13 or newer is required; you have 0.9.3

创建数据库迁移文件或者创建表报错:django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

Django2.2.10已经不能按照之前的老办法连接MySQL数据库了,会报错。

直接用1.3.13或者以上版本mysqlclient连接,可以用1.4.6或者2.0.1等都可以。不用pymysql即可。直接在终端执行一般默认下载最新版本即可。

pip install mysqlclient

或者指定别的版本pip install mysqlclient==1.4.6也可以

如果之前用了pymysql,删除之前版本所谓的“伪装”的两行代码。

报错解决方案:mysqlclient 1.3.13 or newer is required; you have 0.9.3_第1张图片

如上图,注释掉。

python manage.py migrate

报错解决方案:mysqlclient 1.3.13 or newer is required; you have 0.9.3_第2张图片

你可能感兴趣的:(Django,django,mysql)