pip 使用国内镜像源
默认情况下 pip 使用的是国外的镜像,在下载的时候速度非常慢,本文我们介绍使用国内清华大学的源 (opens new window)。
我们可以直接在 pip 命令中使用 -i 参数来指定镜像地址,例如:
pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
1
以上命令使用清华镜像源安装 numpy 包。
这种只对当前安装命令有用,如果需要全局修改,则需要修改配置文件。
# Windows 配置方法
你需要在当前用户目录下的 pip 文件夹中创建一个 pip.ini 文件(例如:C:\Users\用户名\pip\pip.ini),然后在 pip.ini 文件中输入以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
1
2
3
4
2
3
4
# Linux/Mac os 配置方法
Linux/Mac os 环境中,配置文件位置在 ~/.pip/pip.conf(如果不存在创建该目录和文件):
mkdir ~/.pip
1
打开配置文件 ~/.pip/pip.conf,修改如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
1
2
3
4
2
3
4
查看镜像地址:
$ pip3 config list
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
install.trusted-host='https://pypi.tuna.tsinghua.edu.cn'
1
2
3
2
3
可以看到已经成功修改了镜像。
# 其他国内镜像源
中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple (opens new window)
豆瓣:http://pypi.douban.com/simple/ (opens new window)
阿里云:http://mirrors.aliyun.com/pypi/simple/ (opens new window)
# 常用 pip 命令
# pip 升级
pip install --upgrade pip
# 或者
python -m pip install --upgrade pip
# 查看已安装的包
pip list
# 包安装
pip install [包名]
# 查看包的安装位置
pip show [包名]
# 包卸载
pip uninstall [包名]
# 查看可以升级的包
pip list -o
# 包升级
pip install -U [包名]
# 包搜索
pip search [搜索关键字]
# 本地包安装
pip install [目录]/[文件名]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
上次更新: 2024/10/14, 19:46:59