conda Command Examples

Package, dependency and environment management for any programming language. Some subcommands such as conda create have their own usage documentation. More information: https://github.com/conda/conda.

conda create --name {{environment_name}} {{python=3.9 matplotlib}}

conda info --envs

conda activate {{environment_name}}

conda deactivate

conda remove --name {{environment_name}} --all

conda install {{python=3.4 numpy}}

conda list

conda clean --all