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

View File

@@ -0,0 +1,24 @@
# pip freeze
> 列出已安装的包以需求格式。
> 更多信息:<https://pip.pypa.io/en/stable/cli/pip_freeze>。
- 列出已安装的包:
`pip freeze`
- 列出已安装的包并写入 `requirements.txt` 文件:
`pip freeze > requirements.txt`
- 列出虚拟环境中的已安装包,排除全局安装的包:
`pip freeze --local > requirements.txt`
- 列出用户站点中的已安装包:
`pip freeze --user > requirements.txt`
- 列出所有包,包括 `pip``distribute``setuptools``wheel`(默认情况下会被跳过):
`pip freeze --all > requirements.txt`