- 持續(xù)更新
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa6 in position 9737: illegal multibyte sequence
解決方案:
打開(kāi)\Lib\site-packages\django\views下的debug.py文件,轉(zhuǎn)到line331行:
with Path(CURRENT_DIR, 'templates', 'technical_500.html').open() as fh
將其改成:
with Path(CURRENT_DIR, 'templates', 'technical_500.html').open(encoding="utf-8") as fh
就成功了。