Conda command not found even after defining PATH

I installed Anaconda with the Mac installer (and also tried installing .sh with bash). The installation automatically created a PATH in the file .bash_profileas follows:

# Finished adapting your PATH environment variable for use with MacPorts.
# added by Anaconda2 2.5.0 installer
export PATH="/Users/MyUserName/anaconda/bin:$PATH"

I restarted the terminal and even the computer. When I type conda ....on the command line, I still get the error -bash: conda: command not found. I do / have gone missing. wrong? I am using OS X Yosemite. Thanks

+4
source share
1 answer

I also ran into the same problem. I could not find a viable solution, so I completely removed anaconda from my system using:

sudo rm -rf ~/anaconda

anaconda . , .

+1

Source: https://habr.com/ru/post/1627678/


All Articles