试了网上好几个解决办法。
下面这个办法是最对我胃口的。
~~~~~~~~~~~~~~~~
安装ez_setup.py时出现了这个问题:
UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xb0 in position 1: ordinal not in range(128)
Something went wrong during the installation.
See the error message above.
解决办法:
打开C:\Python27\Lib下的 mimetypes.py 文件,在default_encoding = sys.getdefaultencoding()前面添加:
if sys.getdefaultencoding() != ‘gbk‘:
reload(sys)
sys.setdefaultencoding(‘gbk‘)
注:解决方案转自https://code.csdn.net/snippets/147340
时间: 2024-12-07 07:55:58