问题描述:
当我使用pip install +需要的安装包时,其会报如下错误:
InsecurePlatformWarning
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLError(1, '_ssl.c:507: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version'),)) - skipping
解决方法:
pip install --index https://pypi.mirrors.ustc.edu.cn/simple numpy
找到了一些国内镜像如下:
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
douban http://pypi.douban.com/simple
Python官方 https://pypi.python.org/simple
v2ex http://pypi.v2ex.com/simple
中国科学院 http://pypi.mirrors.opencas.cn/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
参考:https://stackoverflow.com/questions/50836535/pip-does-not-work-ttpsconnectionpoolhost-pypi-org-port-443-max-retries-ex
问题描述:当我使用pip install +需要的安装包时,其会报如下错误: InsecurePlatformWarningCould not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.or...
之前有位群友在群里发了个问题,说使用pip安装第三方包遇到”Read timeout”。我相信很多时候,大家在使用pip都会遇到这个问题,所以,我想有必要写一遍文章来总结一下。
具体如下:
在这之前,你要明白一点,直接使用pip安装超时,绝大多数原因是pip源在外国,所以国内使用,网络就算稳定,也有一定超时。
要想解决pip安装软件包超时问题,目前只有两种方式。
第一种:设置延迟时间
这种方式就是直接在pip命令后加入:
“–default-timeout=1000”写在前面或后面都可以。
第二种:更换pip下载源
pip国内的一些镜像:
pip install pyaudio -i http://pypi.douban.com/simple/ 提示:
Looking in indexes: http://pypi.douban.com/simple/
WARNING: The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS
报错信息如下:ERROR: Could not find a version that satisfies the requirement 库名
ERROR: No matching distribution found for 库名
总结了网上的很多可能原因和并实操可行性比较高的方法如下:
一. pip的版本过低
在命令行窗口使用“python -m pip install --upgrade pip”命令对pip进行更新,出现如下图显示信息后即为......
pip安装第三方库时报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))…
pip安装第三方库时报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...,详细报错见下图:
报错原因:
国外镜像源连接问题导致
改为国内镜像源下载
常用国内源:
清华:https:/
已解决(pip升级报错)
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: pip in e:\anaconda\install_root\lib\
pip安装第三方库时报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))…,详细报错见下图:
报错原因:
国外镜像源连接问题导致
改为国内镜像源下载
常用国内源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:http://mirr...
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sd...