LinuxCommandLibrary

conda-env

environment management tool

TLDR

List all environments

$ conda env list
copy
Export environment to YAML file
$ conda env export > [environment.yml]
copy
Create environment from file
$ conda env create -f [environment.yml]
copy
Remove an environment
$ conda env remove --name [env_name]
copy
Update environment from file
$ conda env update -f [environment.yml]
copy

SYNOPSIS

conda env subcommand [options]

DESCRIPTION

conda env manages conda environments including creation from specification files, export, and removal. The environment.yml format allows reproducible environment definitions.

CONFIGURATION

~/.condarc

User-level conda configuration for channels, package settings, and solver options.
/opt/conda/.condarc
System-wide conda configuration.

SUBCOMMANDS

list

List all conda environments.
create
Create an environment from a YAML file.
export
Export environment to YAML.
remove
Remove an environment.
update
Update environment from YAML file.
config
Configure environment variables.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community