首页 > 编程语言 > 详细

python3.x运行的坑:AttributeError: 'str' object has no attribute 'decode'

时间:2019-08-31 15:29:33      阅读:114      评论:0      收藏:0      [点我收藏+]

python3.x运行的坑:AttributeError: ‘str‘ object has no attribute ‘decode‘

2019.05.22 21:38:45字数124阅读1909

1、Python3.x和Python2.X版本有一些区别,我遇到了两个问题如下:

 

a.第一个报:mysqlclient 1.3版本不对:

解决办法:注释掉这行即可;

b.第二个报:字符集的问题:

报错如下:File "C:\Users\Administrator\PycharmProjects\untitled1\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‘

报错截图:

 

 
技术分享图片
解决办法:注释掉这里,因为字符集不支持的原因

 

 
技术分享图片
 
 
0人点赞
 

python3.x运行的坑:AttributeError: 'str' object has no attribute 'decode'

原文:https://www.cnblogs.com/cly0205/p/11438575.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!