异常原因:
判断这个版本django由于出错信息的代码有编码读取问题 造成无法正常显示。
根据提示找到 python安装路径\Lib\site-packages\django\views\debug.py ,
打开后,修改约在 332 行处,将下列代码注释掉(源码不要改,不要删除,注释掉就可以,在指定的位置输入新的代码):
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: