【20230105】pip pip3 替换国内镜像源

1 存在问题

在使用默认pip3安装库时,出现超时情况。

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.

2 国内的pip源

  • 阿里云:https://mirrors.aliyun.com/pypi/simple/
  • 清华:https://pypi.tuna.tsinghua.edu.cn/simple
  • 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
  • 华中理工大学:http://pypi.hustunique.com/
  • 山东理工大学:http://pypi.sdutlinux.org/
  • 豆瓣:http://pypi.douban.com/simple/

3 临时更换镜像源

pip3 install 库名 -i 镜像地址
pip3 install django-excel -i https://mirrors.aliyun.com/pypi/simple/

【20230105】pip pip3 替换国内镜像源_第1张图片Looking in indexes:https://mirrors.aliyun.com/pypi/simple/表示从该地址搜索源,可以看到已经替换成阿里云的镜像。

4 Windows下更换镜像源

打开我的电脑,在地址栏中输入 %APPDATA% 按回车跳转到目标目录。在目录下创建一个pip文件,再其内部创建一个pip.ini 文件。输入以下信息。以阿里云为例

[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com

注意:不管你用的是pip3还是pip,方法都是一样的,都是创建pip文件夹。

【20230105】pip pip3 替换国内镜像源_第2张图片

Linux 或者 Mac环境下替换镜像源:

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

你可能感兴趣的:(日常笔记,pip,python)