Add Python to the PATH Environmental Variable
Posted: Saturday, January 16, 2016 by Tyler Durden in Labels: python , windows
Add Python to the PATH Environmental Variable (‘python’ is not recognized as an internal or external command)
python.exe, they get the following error message:
Step 1: Download Python

Step 2: Add Python to the PATH Environmental Variable



PATH variable and click Edit. You want to add Python to this PATH variable by adding ;C:\Python27 to the end of that string (or whatever the path to your Python installation is).

python in a command prompt, Windows will use the PATH environmental variable to get a list of directories to go looking for the python.exe file. Before you followed the steps here, it couldn’t find thepython.exe file, hence the error.PATH variable is set, when you execute python via the Windows console, you'll see a familiar programming prompt.