pip intall package网络超时,无法安装问题解决

pip intall package网络超时,无法安装问题解决_第1张图片

 

使用pip命令安装python库时有事会遇到“pip install timeout”的问题,主要有两个原因,一是因为网速较慢、不稳定;另一方面是有些库的默认安装源是pip 的默认源是 pypi.python.org,国内访问受限。

解决方案:

1.设置超时时间

pip --default-timeout=100 install -U  +库

2.指定镜像

#清华镜像

pip install -i   https://pypi.tuna.tsinghua.edu.cn/simple +库

####################################################

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

你可能感兴趣的:(pip,python,开发语言)