I am trying to run a python program on Windows with a call like this:
python pacman.py
I have many such calls for a python program. I want to run it from a windows command prompt. When I run this on Ubuntu, it works well, but when I try to use it on Windows, I get the following error:
'python' is not recognized as an internal or external command, operable program or batch file.
How can I run these python programs from windows cmd?
source
share