DEV Community

Lam Hoang
Lam Hoang

Posted on

Managing .condarc Configuration

conda config --get Get all keys and values from my .condarc file

conda config --get channels Get value of the key channels from .condarc file

conda config --show channels Knowing the active channels

conda config --add channels pandas Add a new value to channels so conda looks for packages in this location

conda config --add channels defaults Adding a default channel

conda config --add channels conda-forge Adding a channel

conda config --add channels bioconda Adding a channel

conda config --set anaconda_upload yes Enable uploading to Anaconda Cloud

conda config --set anaconda_upload no Disable uploading to Anaconda Cloud

conda config --set auto_activate_base false Deactivating the activation of the base environment in Python

Conda Cheat Sheet by SimpleCheatSheet.com

Top comments (0)