Show Menu
Cheatography

Conda Cheat Sheet (DRAFT) by

Conda cheat sheet and keyboard short cuts

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Info

Basics

Conda Version
conda info
Update Conda
conda update conda
 

Enviro­nments

List enviro­nments
conda info --envs
List enviro­nments
conda env list
Load enviro­nment
source activate $env_name
Unload enviro­nment
source deactivate
Write list of packages
conda list -e -n $env_name > packag­es.txt

Packages

Search package
conda search $searc­h_term
List installed packages
conda list --name $env_name
Check available versions of package
conda search $package
Install specific version of package
conda install $packa­ge=­$ve­rsion

Packages in active enviro­nment

List packages
conda list
Update all packages
conda update --all
Remove cached repodata files
conda clean --inde­x-cache
Write list of packages
conda list -e > packag­es.txt