0

I installed anaconda following the docs. However when I type conda --version in the terminal, I will not get any output. Also no output for conda list .

I found out that, I already installed anaconda before and I tried to remove everything even the .contium folders, updated in .bashrc, but I am not getting any output for any conda command.

1 Answers1

1

Open terminal and write (I suppose you have anaconda for pyhton3):

export PATH=~/anaconda3/bin:$PATH

If it works, then use the file .bashrc (hidden file), located in the home directory, runs codes every time a new terminal is opened.

Then add a line on it:

export PATH=~/anaconda3/bin:$PATH
Vitor Abella
  • 7,537
  • It didnt worked. I have miniconda2 installed. I can see the following appended in the .bashrc # added by Miniconda2 4.3.21 installer export PATH="/home/kranthi/miniconda2/bin:$PATH" – kranthi sai Jul 25 '17 at 16:47
  • @kranthisai, So i suggest you to install anaconda. It works for me. – Vitor Abella Jul 26 '17 at 04:51
  • yeah I tried that too. Never had these issues before. Looks weird to me. I moved to docker. Thank you.. – kranthi sai Jul 26 '17 at 17:19