标签:style blog http ar color sp 文件 on art
原帖:http://blog.csdn.net/hugleecool/article/details/17996993
解决方法:打开C:\Python27\Lib下的 mimetypes.py 文件,找到大概256行的
‘default_encoding = sys.getdefaultencoding()’。
在这行前面添加三行:
if sys.getdefaultencoding() != ‘gbk‘: reload(sys) sys.setdefaultencoding(‘gbk‘) default_encoding = sys.getdefaultencoding()
问题解决
如果不行,可以尝试http://www.tuicool.com/articles/YRrUrav
py2.7 安装setuptools UnicodeDecodeError报错
标签:style blog http ar color sp 文件 on art
原文地址:http://my.oschina.net/sherlocked/blog/348066