-bash: conda: command not found
I tried following this How to run Conda?
but every time I have to type
export PATH=~/miniconda3/bin:$PATH
I tried adding to .bash_profile
and .bashrc
but then what happened is :
When I open terminal conda command won't work but when I type bash and enter bash and then I type conda it works perfectly fine .
Any suggestions how to make conda work outside of bash ?
P.S I am using MAC
My .bash_profile
export ANDROID_SDK = "/Users/vivanksharma/Downloads/Tools
export PATH = $PATH:"$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools"
# added by Anaconda3 5.2.0 installer
export PATH="/Volumes/MACExtended/Softwares/Python/anaconda3/bin:$PATH"
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
# added by Miniconda3 installer
export PATH="~/miniconda3/bin:$PATH"