发布于 2014-12-22 08:04:20 | 6076 次阅读 | 评论: 3 | 来源: PHPERZ
easy_install Python包安装管理工具
easy_install是由PEAK(Python Enterprise Application Kit)开发的setuptools包里带的一个命令,所以使用easy_install实际上是在调用setuptools来完成安装模块的工作。
本文为大家讲解的是安装easy_install编码错误UnicodeDecodeError: 'utf8' codec can't decode byte 0xb0 in解决方法,感兴趣的同学参考下。
windows安装easy_install出现以下错误
UnicodeDecodeError: 'utf8' codec can't decode byte 0xb0 in position 1: invalid start byte
Something went wrong during the installation.
See the error message above.
设置python编码为 GBK,
如:新建
sitecustomize.py
内容如下:
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('gbk')
放到 Python27/Lib