Reputation: 13653
I am using Windows 8 64-bit. I installed Python, and see that Windows Path
is appended by the two paths : C:\Python27\Scripts; C:\Python27;
So when I run cmd
and type python
I get the error
'python' is not recognized as an internal or external command, operable program or batch file.
I also tried py
, same error.
I'm currently using the solution proposed here, so I'm typing
C:\Python27\python.exe manage.py runserver
for example. But this is not what I want. How can I make it work with the command python
?
Thanks in advance.
Upvotes: 0
Views: 269
Reputation: 189387
You should not have a space after the semicolon in the PATH
value.
Upvotes: 3