I am trying to write and run Python scripts on my 64-bit machine under Windows 7. I installed Python in C: / Python34 and I added it to the PATH variable for Windows:
C:\Python34; C:\Python34\python.exe
(the second is probably pointless, but I tried), and yet I get this error on the Windows command line:
C:\Users\me>python test.py
'python' is not recognized as an internal or external command,
operable program or batch file.
So, how can I really install Python on my Windows x64 computer?
source
share