Python,提示:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbf inposition 0: invalid start byte

问题:在设置本地测试服务器时(使用Python的SimpleHTTPServer模块),在命令行(工作目录)启动服务器时(python -m http.server)提示:

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbf inposition 0: invalid start byte

解决方法:

若排除代码编码问题(要使用utf-8),可能是由于计算机名字是中文导致,修改为英文的就可以了。


可以试试,我的是这样解决的。

你可能感兴趣的:(Python,提示:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbf inposition 0: invalid start byte)