溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

django2.2安裝錯(cuò)誤最全的解決方案(小結(jié))

發(fā)布時(shí)間:2020-10-01 23:23:03 來(lái)源:腳本之家 閱讀:131 作者:望月明 欄目:開(kāi)發(fā)技術(shù)

安裝報(bào)錯(cuò)類型,解決方案;

1. 數(shù)據(jù)庫(kù)連接報(bào)錯(cuò)

mysqldb只支持python2,pymysql支持3,都是使用c寫(xiě)的驅(qū)動(dòng),性能更好

# django中修改配置文件setting.py添加如下代碼:

import pymysql
pymysql.install_as_MySQLdb()

解決方案:

修改數(shù)據(jù)庫(kù):mysqldb=>pymysql

2. 因?yàn)榍袚Q數(shù)據(jù)庫(kù)導(dǎo)致版本錯(cuò)誤

raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.' % Database.__version__)
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

解決方案:

注釋掉檢測(cè)數(shù)據(jù)庫(kù)版本的代碼

# "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 36, in <module>
 
# if version < (1, 3, 13):
#  raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.' % Database.__version__)

3. 切換數(shù)據(jù)庫(kù)導(dǎo)致轉(zhuǎn)碼錯(cuò)誤

"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/db/backends/mysql/operations.py", line 146, in last_executed_query
    query = query.decode(errors='replace')

解決方案: ==暫時(shí)使用第二種類型==

修改decode為encode

把條件注釋掉,防止出現(xiàn)不可預(yù)知的錯(cuò)誤,這個(gè)錯(cuò)誤很可能是python2中類型str和unicode的原因,python3中只有unicode類型數(shù)據(jù)

# "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/db/backends/mysql/operations.py", line 146

 # if query is not None:
  #query = query.encode(errors='replace')

解決完成之后完美運(yùn)行

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI