Python pip install 常见问题处理

Posted 虫师魁拔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python pip install 常见问题处理相关的知识,希望对你有一定的参考价值。

一、安装 python 第三方库超时

安装失败日志中提示 Read timed out 、 wait timeout 之类文字,这一般是由于网络等因素,导致下载等待超时。可以修改下载源,或者是延长下载等待超时时间

1、修改下载源(针对部分由于国外下载源)

阿里云 http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/

豆瓣 http://pypi.doubanio.com/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 三方库名

2、延迟时间

pip3 install --default-timeout=1000 三方库名

时间根据实际修改。

二、安装中文件访问权限问题

失败日志中包含

ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问

这个一般是由于 pip 放置的位置是系统的文件目录,需要添加 --user

pip install --user 三方库名

如果还是有问题,可以以管理员权限运行再输入上述命令

以上是关于Python pip install 常见问题处理的主要内容,如果未能解决你的问题,请参考以下文章

处理多个 Python 版本和 PIP?

ubuntu16.04 pip install scrapy 报错处理

错误处理: pip install 时候 “Read timed out”

pip install Error - ReadTimeoutError: HTTPSConnectionPool

Python用pip install安装Scipy报错

python -m pip install --upgrade pip 升级不成功问题