Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When prompted Proceed ([y]/n)?, press y to proceed.

Additional notes:

The conda create command can be modified to fit your needs. Below are a few additional examples:

Additional example 1: Install packages when creating an environment: 

Code Block
conda create -n another-env python=3.8 numpy requests

Additional example 2: Specify the versions of the packages: 

Code Block
conda create -n another-env python=3.7 numpy=1.16.1 requests=2.19.1

Additional example 3: Create a conda environment from an environment.yml file:

Code Block
conda env create -f environment.yml

Info

For more examples of creating conda environments, please see the section "Managing environments" in the Conda User Guide.

...

When prompted Proceed ([y]/n)?, press y to proceed.

Additional notes:

...