【问题笔记】Linux下 pip 安装 python 库提示超时

【问题笔记】Linux下 pip 安装 python 库提示超时_第1张图片
今天在本地重新配了一下 ubuntu 虚拟机的环境,因为使用的是渣校园网,下载安装 Python 扩展库的时候速度奇慢无比,还总是提示连接超时,下载失败等,然后搜索了一下网上的解决办法,个人觉得最有效的如下:

解决办法:

1. 设置超时时间:pip --default-timeout=100 install 包名

2. 不使用缓存:pip --no-cache-dir install 包名

3. 临时使用国内源:

pip install 包名 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

国内源列表:

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

示例:
仿照下列指令,会使下载速度得到明显的改善:
pip install -i https://pypi.doubanio.com/simple/ 包名

pip install -i https://pypi.doubanio.com/simple/ -r requirements.txt

若使用的是 python3.x 可以将指令中的“pip”修改改成“pip3”。

4. 永久使用国内源:

pip 的配置文件一般位于(如果没有,请直接创建):

  • Linux: $HOME/.config/pip/pip.conf
  • macOS: $HOME/Library/Application Support/pip/pip.conf
  • Windows: %APPDATA%\pip\pip.ini

打开并编辑 pip 配置文件,将其中的 index-url 修改为上面的任意一个国内源 。

配置文件示例:

[global]
index-url = https://linux.xidian.edu.cn/mirrors/pypi/web/simple/


参考文章:
解决pip安装超时的问题 https://blog.csdn.net/qq_39161804/article/details/81191977

你可能感兴趣的:(问题记录)