pip, pip-install: add Chinese translation (#13244)

This commit is contained in:
Leo
2024-07-13 21:07:18 +08:00
committed by GitHub
parent 2f1af4058a
commit cf3da06b07
2 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# pip install
> 用于安装 Python 包。
> 更多信息:<https://pip.pypa.io/>.
- 安装包:
`pip install {{包名}}`
- 安装指定版本的包:
`pip install {{包名}}=={{版本号}}`
- 通过指定的依赖文件安装(通常文件名是 requirements.txt
`pip install -r {{requirements.txt}}`
- 通过 URL 或源码存档文件安装(如 *.tar.gz 或 *.whl
`pip install --find-links {{url|存档文件}}`
- 在本地的项目路径下以开发模式editable安装通常是读取 pyproject.toml 或 setup.py 文件):
`pip install --editable {{.}}`