Config._file2dict UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb2 in position 2026: invalid start byte
时间: 2023-11-04 15:06:36 浏览: 126
LL.zip_android Star-Di_dict_star-dict_字典
根据提供的引用内容,你的代码在执行Config._file2dict时遇到了UnicodeDecodeError错误,错误信息是'utf-8' codec can't decode byte 0xb2 in position 2026: invalid start byte。这个错误通常是由于文件编码不兼容造成的。你可以尝试在cc.decode(encoding)中增加一个参数"ignore",这样可以忽略掉无法解码的字节,并继续执行程序。修改后的代码应该如下所示:
env_info['MSVC'] = cc.decode(encoding,"ignore").partition('\n').strip()。
阅读全文