码迷,mamicode.com
首页 > 数据库 > 详细

Django2.2连接MySQL问题解决

时间:2019-11-01 09:30:46      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:lin   方法   color   pack   configure   one   exe   end   get   

报错一:

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

解决方法:编辑文件,注释掉如下行:

version = Database.version_info
# if version < (1, 3, 13):
#     raise ImproperlyConfigured(‘mysqlclient 1.3.13 or newer is required; you have %s.‘ % Database.__version__)

 

报错二:

File "D:\data\gitee.com\ExamOnline\venv\lib\site-packages\django\db\backends\mysql\operations.py", line 146, in last_executed_query query = query.decode(errors=‘replace‘) AttributeError: ‘str‘ object has no attribute ‘decode‘

解决方法:

编辑文件operations.py,注释掉如下行

query = getattr(cursor, _executed, None)
# if query is not None:
# query = query.decode(errors=‘replace‘)
return query

 

Django2.2连接MySQL问题解决

标签:lin   方法   color   pack   configure   one   exe   end   get   

原文地址:https://www.cnblogs.com/miaocbin/p/11775107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!