pip基本使用及下载速度慢解决方案
# 查看当前使用的镜像源
pip config list
# 设置信的默认镜像源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
1
2
3
4
2
3
4
# python pip下载速度慢的解决方法
解决方式: 更改pip的数据源。目前国内比较知名的有豆瓣的,清华的。
豆瓣:http://pypi.douban.com/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple
安装命令为:
pip install -i 网址 所需要安装的库名
1
例如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple requests
pip install -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com django
1
2
3
2
3
就是利用清华的镜像源,下载安装requests库。
还可以通过设置配置文件永久更改 pip
数据源 windows
下,直接在user
目录中创建一个pip目录,如:C:\Users\xx\pip
,新建文件pip.ini
,内容如下
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = mirrors.aliyun.com
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 查看已经安装的包
pip list
# 查看已经过期的包
pip list --outdated
或 pip list --outdated --format=columns
# 包的下载安装
pip install package_name
# 批量更新包
import pip
from subprocess import call
for dist in pip.get_installed_distributions():
call("pip install --upgrade " + dist.project_name, shell=True)
1
2
3
4
5
6
2
3
4
5
6
或
pip install pip-review
pip-review --local --interactive
1
2
3
2
3
# 第三方库打包保存和安装
- 生成已安装依赖包清单:
pip freeze >requirements.txt
- 从网络上下载清单中的依赖包:
pip install -r requirements.txt
上次更新: 2024/07/07, 10:41:07