pip install 报错UnicodeDecodeError: 'ascii' codec can't decode byte 0xb5 in

Posted 你好,小帝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip install 报错UnicodeDecodeError: 'ascii' codec can't decode byte 0xb5 in相关的知识,希望对你有一定的参考价值。

当python在window环境中通过pip安装pandas报标题这样的错,主要是因为python默认编码格式是:ascii

在https://www.python.org/dev/peps/pep-0100/文章中有介绍

 

 

解决方法:在python/lib/site.py中加入  

import sys
reload(sys)
sys.setdefaultencoding(\'gbk\')

问题就解决了。。。。。。。。。。。。

 

以上是关于pip install 报错UnicodeDecodeError: 'ascii' codec can't decode byte 0xb5 in的主要内容,如果未能解决你的问题,请参考以下文章

python 的pip install 安装包报错。

Python用pip install安装Scipy报错

pip install -U selenium 报错为啥呢?

python -m pip install --upgrade pip 更新一直报错

python pip install XXX出现报错问题

pip3.7 install报错bad interpreter: No such file or directory