pip install -r requirements.txt下载速度慢
安装包下载速度慢,切换镜像源
- 方法 1:直接使用镜像源加速安装(推荐)
- 方法 2:修改 pip 配置文件
方法 1:直接使用镜像源加速安装(推荐)
在安装命令后添加 -i 参数,并指定国内镜像源。例如:
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
常用的国内镜像源
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple
豆瓣:https://pypi.douban.com/simple
中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple
方法 2:修改 pip 配置文件
在 pip 配置文件中添加国内镜像源,以便所有 pip 安装命令都默认使用镜像源。
- Linux / macOS: 编辑或创建 ~/.pip/pip.conf 文件,添加以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
- Windows: 编辑或创建 C:\Users<用户名>\pip\pip.ini 文件,添加以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
配置完成后,pip install 将默认使用设置的镜像源,提升下载速度。