I have conda installed and everytime I open a terminal conda automatically run and put a (base) in front of my terminal prompt. I'm trying to turn off this conda function and need some help from here to get that done. below is my .bash_profile
and please let me know how to modify it and don't make conda up in terminal by default. Thanks.
export PATH="~/go/bin:$PATH"
export PATH="~/.local/bin:$PATH"
# added by Anaconda3 2019.07 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/zwang/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
\eval "$__conda_setup"
else
if [ -f "/Users/zwang/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/zwang/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
\export PATH="/Users/zwang/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
. ~/.bashrc