一、参考资料
pypi镜像-pypi下载地址-pypi安装教程-阿里巴巴开源镜像站
二、关键步骤
添加源
创建pip配置文件:
python
mkdir ~/.pip
sudo gedit ~/.pip/pip.conf
添加以下内容:
bash
[global]
timeout = 6000
index-url = https://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
或者通过指令修改:
bash
pip config set global.index-url https://pypi.org/simple
删除源:
bash
pip config unset global.index-url
查看现在用的哪个源:
bash
pip config list
输出结果:
bash
(consistent_depth) C:\Users\YOYO>pip config list
global.index-url='https://mirrors.aliyun.com/pypi/simple/'
global.timeout='6000'
global.trusted-host='mirrors.aliyun.com'
其他pip源:
bash
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
腾讯云 http://mirrors.cloud.tencent.com/pypi/simple
Pypi官方 https://pypi.org/simple/
三、FAQ
Q:pip list出现警告
bash
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
解决方法 :修改 pip.conf
配置,添加如下内容。
bash
sudo gedit ~/.pip/pip.conf
添加以下内容:
bash
[list]
format=columns
或者
format=legacy