使用pip默认的地址下载稍微大一点的包,例如:opencv_python、numpy等超过10M、20M的安装包,经常会出现在下载几秒后出现Read timed out.
的情况,比如下面的报错信息
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
如果遇到这种情况,只需要我们将下载源切换到国内的就可以了。比如,使用清华的下载源。
那么如果想使用清华下载源,又不想永久切换下载源地址,我们可以使用 -i
参数加上清华镜像源的地址
这里给出一个示例,使用清华下载源来下载 opencv_python
包
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv_python
能够实现这个效果,就在于使用 -i https://pypi.tuna.tsinghua.edu.cn/simple
这个参数,而这个参数的位置可以放在包的名称之前,也可以放在包的名称只有。
如下所示:
# 放在包的名称之前
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv_python
# 放在包的名称之后
pip install opencv_python -i https://pypi.tuna.tsinghua.edu.cn/simple
10