commands.sh

conda

all

Package, dependency, and environment management for any programming language. Some subcommands such as `create` have their own usage documentation. See also: `mamba`.

More info →

Options (3)

-n, --nameboolean

Create a new environment, installing named packages into it

Example: conda create {{[-n|--name]}} {{environment_name}} {{python=3.9 matplotlib}}
-e, --envsboolean

List all environments

Example: conda info {{[-e|--envs]}}
-a, --allboolean

Delete unused packages and caches

Example: conda clean {{[-a|--all]}}

Examples (8)

Create a new environment, installing named packages into it

conda create [-n|--name] environment_name python=3.9 matplotlib

List all environments

conda info [-e|--envs]

Activate an environment

conda activate environment_name

Deactivate an environment

Delete an environment (remove all packages)

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

Install packages into the current environment

conda install python=3.4 numpy

List currently installed packages in current environment

Delete unused packages and caches

conda clean [-a|--all]
made by @shridhargupta | data from tldr-pages