Thursday 11 June 2020

Change default env on macOS after Anadaconda installation

installed anadaconda and it changed default env to (base) , the new terminal will start with base env

in order to change it back, do the following

conda config --show | grep auto_activate_base

auto_activate_base: True

conda config --set auto_activate_base False
source ~/.bashrc
conda config --show | grep auto_activate_base

auto_activate_base: False