3

I created a conda environment, which I called MyDjangoEnv. When I try to activate it using source activate MyDjangoEnv I get the error:

No such file or directory.

I tried installing a different version of Python with conda create --name MyDjangoEnv python=3, but I get the error:

conda: the order was not found

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
user9608539
  • 39
  • 1
  • 6
  • 1
    This thread might have solution to this problem https://stackoverflow.com/questions/18675907/how-to-run-conda – Paandittya Apr 06 '18 at 16:59

1 Answers1

2

You might need to set the path using

for anaconda 2 :

export PATH=~/anaconda2/bin:$PATH

for anaconda 3 :

export PATH=~/anaconda3/bin:$PATH

for anaconda 4 :

Use the Anaconda Prompt

and then

conda --version 

to confirm that it worked.