Cheatography
https://cheatography.com
Conda cheat sheet and keyboard short cuts
This is a draft cheat sheet. It is a work in progress and is not finished yet.
Basics
Conda Version |
conda info |
Update Conda |
conda update conda |
|
|
Environments
List environments |
conda info --envs |
List environments |
conda env list |
Load environment |
source activate $env_name |
Unload environment |
source deactivate |
Write list of packages |
conda list -e -n $env_name > packages.txt |
Packages
Search package |
conda search $search_term |
List installed packages |
conda list --name $env_name |
Check available versions of package |
conda search $package |
Install specific version of package |
conda install $package=$version |
Packages in active environment
List packages |
conda list |
Update all packages |
conda update --all |
Remove cached repodata files |
conda clean --index-cache |
Write list of packages |
conda list -e > packages.txt |
|