In this page:
Table of Contents |
---|
...
- You can also install packages when creating an environment, e.g.: conda create -n another-env python=3.8 numpy requests
- And you can specify the versions of the packages, e.g.: conda create -n yet-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,
conda env create -f environment.yml
- For more examples of creating conda environments, please see "Managing environments" in the Conda User Guide.
...