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

vscode 运行的时候出现的问题;

我的py是3.7

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’

解决办法:注释掉这里,因为字符集不支持的原因
将 # if query is not None:
#query = query.decode(errors=‘replace’)
就可以解决问题了!
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_44683255/article/details/113979841