这个错误的产生原因是文件读取解码不正确,根据错误提示到configparser.py中修改。
def read(self, filenames, encoding=None):
修改为:
def read(self, filenames, encoding='utf-8'):
在读取时默认采用utf8标准。

这个错误的产生原因是文件读取解码不正确,根据错误提示到configparser.py中修改。
def read(self, filenames, encoding=None):
修改为:
def read(self, filenames, encoding='utf-8'):
在读取时默认采用utf8标准。