conda
Package, dependency, and environment management for any programming language. Some subcommands such as `create` have their own usage documentation. See also: `mamba`.
More info →Subcommands (21)
Activate a conda environment. See also: `conda deactivate`.
Delete temporary or unused files: index cache, lock files, unused cache packages, tarballs, and log files.
Compare packages between conda environments.
Modify configuration values in `.condarc`.
Create new conda environments.
Deactivate a conda environment.
Display a health report for your environment.
Manage conda environments.
Export environment details.
Display details about the conda installation.
Initialize conda for shell interaction. Most shells need to be closed and restarted for changes to take effect.
Install packages into an existing conda environment.
List installed packages in a conda environment.
Retrieve latest channel notifications.
Create low-level conda packages.
Remove packages from a conda environment.
Rename an existing conda environment. The base environment and the currently-active environment cannot be renamed.
Advanced search for packages in a conda repository.
Run an executable command in a conda environment.
Search for packages and show their details.
Update packages within a conda environment, including conda itself.
Options (3)
-n, --namebooleanCreate a new environment, installing named packages into it
conda create {{[-n|--name]}} {{environment_name}} {{python=3.9 matplotlib}}-e, --envsbooleanList all environments
conda info {{[-e|--envs]}}-a, --allbooleanDelete unused packages and caches
conda clean {{[-a|--all]}}Examples (8)
Create a new environment, installing named packages into it
conda create [-n|--name] environment_name python=3.9 matplotlibList all environments
conda info [-e|--envs]Activate an environment
conda activate environment_nameDeactivate an environment
Delete an environment (remove all packages)
conda remove [-n|--name] environment_name --allInstall packages into the current environment
conda install python=3.4 numpyList currently installed packages in current environment
Delete unused packages and caches
conda clean [-a|--all]