django.core.exceptions.ImproperlyConfigured: mysqlclient 1.4.0 or newer is required; you have 0.9.3.

 报错信息

django.core.exceptions.ImproperlyConfigured: mysqlclient 1.4.0 or newer is required; you have 0.9.3.

原因

原因是 MySQLclient 目前只支持到 Python3.4,而我使用了更高版本的 python(Python3.7)

处理方式

在setting.py同文件夹下的_init_.py加入以下内容

import pymysql
 
pymysql.version_info = (1, 4, 13, "final", 0)   # 指定版本
pymysql.install_as_MySQLdb() 

 

上一篇:(转)AS3 中,Function.apply、call中第一个参数的作用;与什么时候用


下一篇:【OGG】OGG的下载和安装篇