報錯環境 python=3.6,django=2.2,PyMySQL=0.9.3 …… django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
解決方法:
Django鏈接MySQL時默認使用MySQLdb驅動,但MySQLdb不支持Python3,所以這裏將MySQL驅動設置爲pymysql,使用 pip install pymysql 進行安裝,而後在工程文件__init__.py添加如下代碼便可。python
#安裝pymysqlmysql
pip install pymysql #__init__.py import pymysql pymysql.install_as_MySQLdb()
第一種:
django降到2.1.4版本就OK了sql
第二種(仍使用django 2.2版本):django
一、#找到Python環境下 django包,並進入到backends下的mysql文件夾
cd /opt/anaconda3/envs/envAGC_Mini/lib/python3.6/site-packages/django/db/backends/mysqlbash
二、# 找到base.py文件,註釋掉 base.py 中以下部分(35/36行)
if version < (1, 3, 3):
raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)
此時仍會會報錯,報錯信息以下:ui
AttributeError: ‘str’ object has no attribute ‘decode’
#找到operations.py文件(46行,版本不一樣行數不一樣哈~自個兒find一下),將decode改成encode.net
if query is not None: query = query.decode(errors='replace') return query #改成 if query is not None: query = query.encode(errors='replace') return query
原文:https://blog.csdn.net/weixin_33127753/article/details/89100552
code