pip下载源配置

bitahu

Python默认的pip包来源是国外的服务站点:https://pypi.python.org/simple,由于网络原因对于国内用户很不友好,因此需要把pip的channels更换为国内的下载源。

1. 国内源地址:

清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣:http://pypi.douban.com/simple/

2. 临时换源:
1
2
# 使用时加参数 -i
pip install pyspider -i https://pypi.tuna.tsinghua.edu.cn/simple
3. 永久换源
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 在根目录下创建 ~/.pip/pip.conf 文件(默认不存在,需要手动创建)
mkdir ~/.pip
cd ~/.pip
touch pip.conf
sudo vi ~/.pip/pip.conf

# 输入以下内容
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

# 查看配置后的pip镜像地址
$ pip config list
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
install.trusted-host='https://pypi.tuna.tsinghua.edu.cn'
 Comments
On this page
pip下载源配置