1. 程式人生 > 資料庫 >django2.2 和 PyMySQL版本相容問題

django2.2 和 PyMySQL版本相容問題

錯誤資訊為

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

錯誤原因:

因為Django連線MySQL時預設使用MySQLdb驅動,但MySQLdb不支援Python3,因此這裡將MySQL驅動設定為pymysql。由此產生的版本相容問題。

pymysql安裝方法:

#安裝pymysql
pip install pymysql

#__init__.py
import pymysql
pymysql.install_as_MySQLdb()

解決辦法:
1. django降到2.1.4版本
2. 修復原始碼
2.1 找到Python環境下 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

測試,執行資料遷移

python manage.py makemigrations
python manage.py migrate

django2.2 和 PyMySQL版本相容問題

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。