If you are still using bash as your terminal you need to know the location of two files. The first is your .bash_profile and the second is the location of the Conda application. For me, using OSX Catalina, the Conda application is located in
/usr/local/anaconda3/condabin
You could check to see where they are doing the following:
Open Terminal:
You should be able to see your .bash_profile there using:
ls -la
Your .bash_profile should be in this home directory, which is normally opened up with terminal.
cd /usr/local/anaconda3/condabin/
Should be the location of your Conda Application. If it is not there you may have to grep for it. That is how I found it. Using:
Searches everywhere
egrep --color -R 'conda' *
and then going through the list.
use a program like vi or gedit and update your .bash_profile to include a new path. Open it and add the following:
export PATH=/usr/local/anaconda3/condabin/:$PATH
or
export PATH=/<Folder that contains Conda>/:$PATH
If this does not work for you please see:
https://github.com/ContinuumIO/anaconda-issues/issues/10998