1

I have installed python 2.7 with anaconda. When I type "python" in my anaconda terminal. Everything works perfect!

When I type "python" in my windows cmd I got this error message :

'python' is not recognized as an internal or external command, operable program or batch file.enter code here

But when I write the path

C:\ProgramData\Anaconda2\python.exe

python works.

I have followed those steps to set my environnemental varibale path. But it doesn't work.

youssef mhiri
  • 133
  • 3
  • 11

1 Answers1

2

You need to add

C:\ProgramData\Anaconda2\

To your path variable in environment variables setting on windows and then restart the terminal and it should work. Changes won't be reflected in already running terminal.

Rahul Singh
  • 892
  • 9
  • 24