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,16 @@
# conda 创建
> 创建新的 conda 环境。
> 更多信息:<https://docs.conda.io/projects/conda/en/latest/commands/create.html>。
- 创建一个名为 `py39` 的新环境,并在其中安装 Python 3.9 和 NumPy v1.11 或更高版本:
`conda create --yes --name {{py39}} python={{3.9}} "{{numpy>=1.11}}"`
- 完全复制一个环境:
`conda create --clone {{py39}} --name {{py39-copy}}`
- 创建一个具有指定名称的新环境并安装给定的包:
`conda create --name {{env_name}} {{package}}`