1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages.zh/common/pip.md
2024-08-05 20:41:08 +05:30

32 lines
652 B
Markdown

# pip
> Python 主流的包安装管理工具。
> 更多信息:<https://pip.pypa.io>.
- 安装包(通过 `pip install` 查看更多安装示例):
`pip install {{包名}}`
- 安装包到用户目录而不是系统范围的默认位置:
`pip install --user {{包名}}`
- 升级包:
`pip install --upgrade {{包名}}`
- 卸载包:
`pip uninstall {{包名}}`
- 将已安装的包以 Requirements 的格式保存文件中:
`pip freeze > {{requirements.txt}}`
- 查看包的详细信息:
`pip show {{包名}}`
- 通过依赖文件(如 requirements.txt)来进行安装:
`pip install --requirement {{requirements.txt}}`