Pip 常用操作
1 安装和卸载
安装最新版本
安装指定版本
1
| pip install package==ver
|
安装最小版本
1
| pip install 'package>=ver'
|
安装指定源(以清华源为例)
1
| pip install package -i https://pypi.tuna.tsinghua.edu.cn/simple
|
安装 git 仓库项目
1 2 3 4 5 6 7 8
| pip install git+https://github.com/<user>/<repo>.git
pip install git+https://github.com/<user>/<repo>.git@<ver>
pip install git+ssh://git@github.com/<user>/<repo>.git@<ver>
|
注意:
从 github 的 Copy 按钮复制下来的 ssh 链接中 github.com
和 <user>
是使用冒号连接,这种格式会出错,请手动改为 /
。
卸载
2 更新包
更新
3 换源
全局换源(以清华源为例)
1
| pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
|
4 查看
查看已安装包
列出已安装包
列出可升级的包
5 项目依赖
导出项目依赖
1
| pip freeze > requirements.txt
|
从依赖列表安装
1
| pip install -r requirements.txt
|
参考文章
Python pip 安装与使用 | 菜鸟教程 (runoob.com)
pip直接安装git上的项目_pip git+-CSDN博客