Windows 7, cmd:
C:\>python
'python' is not recognized as an internal or external command,
operable program or batch file.
C:\>python.exe
(works)
C:\>bash
'bash' is not recognized as an internal or external command,
operable program or batch file.
C:\>bash.exe
(works)
etc…
Is there a way to make e.g. python.exe run when I type "python"?
Best Answer
Make sure
.exe
is in your%PATHEXT%
:When you run
python
, Windows tries all extensions listed in that environment variable.