您好,登錄后才能下訂單哦!
錯誤信息為
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
錯誤原因:
因為Django連接MySQL時默認使用MySQLdb驅(qū)動,但MySQLdb不支持Python3,因此這里將MySQL驅(qū)動設置為pymysql。由此產(chǎn)生的版本兼容問題。
pymysql安裝方法:
#安裝pymysql pip install pymysql #__init__.py import pymysql pymysql.install_as_MySQLdb()
解決辦法:
1. django降到2.1.4版本
2. 修復源碼
2.1 找到Python環(huán)境下 django包,并進入到backends下的mysql文件夾
# 使用此命令可以看到對應的文件夾目錄 ➜ daliyfresh pip install pymysql Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Requirement already satisfied: pymysql in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (0.9.3)
2.2 找到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__)
2.3 此時仍然報錯,找到operations.py文件,將decode改為encode
AttributeError: ‘str' object has no attribute ‘decode'
解決辦法:
#linux vim 查找快捷鍵:?decode if query is not None: query = query.decode(errors='replace') return query #改為 if query is not None: query = query.encode(errors='replace') return query
測試,執(zhí)行數(shù)據(jù)遷移
python manage.py makemigrations python manage.py migrate
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。