On this page:
...
- You can also install packages when creating an environment, e.g.:
- conda create -n another-env python=3.8 numpy requests
- You can specify the versions of the packages, e.g.:
- conda create -n another-env python=3.7 numpy=1.16.1 requests=2.19.1
- You can also create a conda environment from an environment.yml file, e.g,
- condaenvcreate-fenvironment.yml
- For more examples of creating conda environments, please see "Managing environments" in the Conda User Guide.
- You can also install packages when creating an environment, e.g.:
...