conda disable auto activate environment code example
Example 1: How do I set Conda to activate the base environment by default?
conda config --set auto_activate_base true
Example 2: conda disable auto activate environment
# In the .bashrc or .zshrc, after the conda initialize block
# enter the following command:
conda config --set auto_activate_base false