配置pip镜像源
很多时候pip下载安装包的时候都比较慢,可以直接指定为国内的镜像源,提高下载速度。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## 查看当前的镜像源
pip config list
## 国外镜像有时候下载较慢,可以直接指定国内镜像源下载
pip install -i https://pypi.douban.com/simple/ flask
## 修改pip的配置文件,将镜像源写入配置文件中。如果没有这个文件就新建一个
cat ~/.pip/pip.conf
[global]
index-url = https://pypi.douban.com/simple/
## 清华大学源
cat ~/.pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
本文由作者按照
CC BY 4.0
进行授权