python的pip安装模块报编码错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的pip安装模块报编码错误相关的知识,希望对你有一定的参考价值。
在使用python的pip安装的时候出现了这个错误
UnicodeDecodeError: ‘ascii’ code can’t decode byte 0xef in position 7: ordinal
not in range(128)
解决方案是:
在Python\Lib\site-packages 建一个文件:sitecustomize.py
import sys sys.setdefaultencoding('gbk')
sys.setdefaultencoding是python设置系统默认编码
python会在下次自动运行这个文件。
现在再运行pip命令就可以就成功了
以上是关于python的pip安装模块报编码错误的主要内容,如果未能解决你的问题,请参考以下文章
windows下python3.6 通过pip安装Twisted模块报utf-8错误的解决办法
ubuntu下使用pip3.6安装模块总是报ssl module in Python is not available的错误
ubuntu下使用pip3.6安装模块总是报ssl module in Python is not available的错误