赞
踩
在使用默认pip3安装库时,出现超时情况。
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.
pip3 install 库名 -i 镜像地址
pip3 install django-excel -i https://mirrors.aliyun.com/pypi/simple/
Looking in indexes:https://mirrors.aliyun.com/pypi/simple/
表示从该地址搜索源,可以看到已经替换成阿里云的镜像。
打开我的电脑,在地址栏中输入 %APPDATA% 按回车跳转到目标目录。在目录下创建一个pip文件,再其内部创建一个pip.ini 文件。输入以下信息。以阿里云为例
[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
注意:不管你用的是pip3还是pip,方法都是一样的,都是创建pip文件夹。
mkdir -p ~/.pip
touch ~/.pip/pip.conf
gedit ~/.pip/pip.conf # 拷贝下面内容进入
[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。