I am using Python 3.4 and Sublime Text 3 in a Windows 7 machine.
If I go to the cmd prompt and type
python
I get
'python' is not recognized as an internal or external command...
If I type
py
It works and I get
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:44:40) [MSC v.1600 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
When I use the Sublime 3 build command it issues the command
python -u "C:\Whatever\MyPythonFile.py"
Which does not work. Apparently I need Sublime Text 3 to use the command 'py' instead of 'python' when building.
What are the exact steps I need to take to change Sublime Text 3 to get it to run python scripts in my environment using the build command?
I have been searching for quite a while and all I can find are instructions on how to add the python directory to PATH, which does not seem to be my problem.