commands.sh

conda env

all

Manage conda environments.

More info →

Options (2)

-f, --fileboolean

Create an environment from an environment file (YAML, TXT, etc.)

Example: conda env create {{[-f|--file]}} {{path/to/file}}
-n, --nameboolean

Delete an environment and everything in it

Example: conda env remove {{[-n|--name]}} {{environment_name}}

Examples (7)

Create an environment from an environment file (YAML, TXT, etc.)

conda env create [-f|--file] path/to/file

Delete an environment and everything in it

conda env remove [-n|--name] environment_name

Update an environment based on an environment file

conda env update [-f|--file] path/to/file --prune

List all environments

View environment details

List environment variables

conda env config vars list

Set environment variables

conda env config vars set my_var=value
made by @shridhargupta | data from tldr-pages