跳到主要内容

设置国内镜像源

一、国内常用镜像源

这里例举了部分国内常见的开源镜像站

# 镜像站名 网址
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
豆瓣:http://pypi.douban.com/simple/
中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/
中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/

二、更改镜像源

1、设置镜像源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

输出:

Writing to /Users/xuhua/.config/pip/pip.conf

2、设置可信

pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn

输出:

Writing to /Users/xuhua/.config/pip/pip.conf

3、设置超时

pip config set global.timeout 6000

输出:

Writing to /Users/xuhua/.config/pip/pip.conf

4、查看配置

cat /Users/xuhua/.config/pip/pip.conf

输出:

[install]
trusted-host = pypi.tuna.tsinghua.edu.cn

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
timeout = 6000

三、使用国内源安装依赖

配置好国内镜像后,再次使用 pip install -r requirements.txt 命令安装依赖,速度飞快

# 生成requirements.txt文件
pip freeze > requirements.txt

# 安装所有依赖
pip install -r requirements.txt