Conda Commands Cheat Sheet

conda activate
Activates the Anaconda base environment

conda deactivate
Deactivates the currently active environment

conda list
Lists all of the packages installed in the currently active environment

conda list --name <environment_name>
Lists all of the packages installed in a specified environment

conda env list
Lists all of the environments in Conda

conda create <environment_name>
Creates a new environment

conda install <package_name>
Installs a new package and its dependencies to the currently active environment

--

--