码迷,mamicode.com
首页 > 其他好文 > 详细

django-AttributeError: 'str' object has no attribute 'decode'

时间:2020-05-11 23:44:17      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:mysq   object   问题   perl   目录   lib   encode   you   文件   


一、Django数据同步过程中遇到的问题:
以下2步骤都需要修改:
  

1、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:\Python37\Lib\site-packages\django\db\backends\mysql(python安装目录)打开base.py,注释掉以下内容:

        if version < (1, 3, 13):

          raise ImproperlyConfigured(mysqlclient 1.3.13 or newer is required; you have %s. % Database.__version__)

  

2、File "C:\Python37\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

  解决办法:打开此文件把146行的decode修改为encode

 

django-AttributeError: 'str' object has no attribute 'decode'

标签:mysq   object   问题   perl   目录   lib   encode   you   文件   

原文地址:https://www.cnblogs.com/vmsysjack/p/12872819.html

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