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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。