add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

37
pages.zh/common/pipenv.md Normal file
View File

@@ -0,0 +1,37 @@
# pipenv
> 简单统一的Python开发工作流程。
> 管理项目的包和虚拟环境。
> 更多信息:<https://pypi.org/project/pipenv>。
- 创建一个新项目:
`pipenv`
- 使用Python 3创建一个新项目
`pipenv --three`
- 安装一个包:
`pipenv install {{package}}`
- 安装项目的所有依赖项:
`pipenv install`
- 安装项目的所有依赖项(包括开发包):
`pipenv install --dev`
- 卸载一个包:
`pipenv uninstall {{package}}`
- 在创建的虚拟环境中启动一个shell
`pipenv shell`
- 为项目生成一个 `requirements.txt`(依赖项列表):
`pipenv lock --requirements`