首页 > 代码库 > Python ez_setup.py安装错误

Python ez_setup.py安装错误

装ez_setup时,遇到了问题,报错:

UnicodeDecodeError: ascii codec cant decode byte 0xb0 in position ordinal not in range(128)  Something went wrong during the installation.  See the error message above.  

现在发现,这应该都是同一个问题。原因与注册表有关,可能与某些国产软件对注册表的改写的gbk格式导致python无法进行第三方库的安装操作。

 

解决方法:打开C:\Python27\Lib下的 mimetypes.py 文件,找到大概256行(可以用Notepad++的搜索功能)的

‘default_encoding = sys.getdefaultencoding()’。

在这行前面添加三行:

if sys.getdefaultencoding() != gbk:      reload(sys)      sys.setdefaultencoding(gbk)  default_encoding = sys.getdefaultencoding()  

保存,重新运行即可。

Python ez_setup.py安装错误