天天看点

Django 3.0.5 mysql ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3

问题描述

使用Django 3.0.5 连接mysql时出现连接异常。

mysql ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3

问题解决方式

引用pymsqy的位置加入

pymysql.version_info = (1, 3, 13, "final", 0)

引用情况将变为

import pymysql

pymysql.version_info = (1, 3, 13, "final", 0)

pymysql.install_as_MySQLdb()

微信公众号

Django 3.0.5 mysql ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3

头条号

Django 3.0.5 mysql ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3