How to solve “conda: command not found” issue?

Problem:

After installed Anaconda, I am typing the following line into my console:

conda create -n py33 python=3.3 anaconda

However, that gives me an error:

-bash: conda: command not found

What should I do to run Anaconda?

Solution

It might be you have not set the path.

To do so, you can edit ~/.bash_profile and add the following line to it.

.bash_profile:PATH=$PATH:$HOME/anaconda/bin

Leave a Reply

Your email address will not be published. Required fields are marked *