出错提示AttributeError: 'str' object has no attribute 'decode'解决方法


出现上面的问题找到:Python37\lib\site-packages\django\db\backends\mysql\operations.py"。

打开修改里面: query = query.decode(errors='replace')   改成query = query.encode(errors='replace')就可以了。

vim /usr/local/python3/lib/python3.6/site-packages/django/db/backends/mysql/operations.py

query = query.decode(errors='replace')修改为:query = query.encode(errors='replace')
上一篇:CF组赛补题- Shuffle


下一篇:CF1614C Divan and bitwise operations