0

I recently downloaded Anaconda3 on Windows 7, and I am having trouble activating my environments.

C:\> activate py34
'cmd' is not recognized as an internal or external command, operable program or batch file.
'cmd' is not recognized as an internal or external command, operable program or batch file.

I have tried restarting and reinstalling to no avail. Could it be that the Anaconda installer did not add the software to my PATH environment variable?

Mo Aboulmagd
  • 131
  • 2
  • 10
  • 1
    Please always add error messages in code blocks not as images. – cel Jul 25 '16 at 03:05
  • Ok, will do, thank you for bringing that to my attention. Can anyone help me with this error? – Mo Aboulmagd Jul 25 '16 at 23:12
  • What is your Windows version? Did you modify your PATH environment variable? There should be system32 listed in your PATH: `Path = %SystemRoot%\system32;`. – osgx Feb 19 '17 at 05:10

1 Answers1

1

Did you modify your PATH environment variable?

There should be system32 catalog listed in your PATH, check https://stackoverflow.com/a/32035723 and https://stackoverflow.com/a/21672609:

Path = %SystemRoot%\system32;
Community
  • 1
  • 1
osgx
  • 90,338
  • 53
  • 357
  • 513