conda, conda-create: add German translation (#8991)

This commit is contained in:
Marco Omainska
2022-10-17 14:45:44 +09:00
committed by GitHub
parent 2ae9154484
commit 20a02e78b5
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# conda create
> Erstelle neue Conda-Umgebungen.
> Weitere Informationen: <https://docs.conda.io/projects/conda/en/latest/commands/create.html>.
- Erstelle eine neue Umgebung mit dem Namen `py39` und installiere Python 3.9 und NumPy v1.11 (oder höher) darin:
`conda create --yes --name {{py39}} python={{3.9}} "{{numpy>=1.11}}"`
- Erstelle eine exakte Kopie einer Umgebung:
`conda create --clone {{py39}} --name {{py39-copy}}`
- Erstelle eine neue Umgebung mit gegebenem Namen und den zu installierenden Paketen:
`conda create --name {{umgebungsname}} {{paketname}}`