How to set path in PYTHON
If you’ve installed Python in Windows using the default installation options, the path to the Python executable wasn’t added to the Windows Path variable . The Path variable lists the directories that will be searched for executables when you type a command in the command prompt. By adding the path to the Python executable, you will be able to access python.exe by typing the python keyword (you won’t need to specify the full path to the program). C:\>python 'python' is not recognized as an internal or external command, operable program or batch file As you can see from the output above, the command was not found. To run python.exe, you need to specify the full path to the executable: C:\>C:\Python34\python --version Python 3.4.3. To add the path to the python.exe file to the Path variable, start the Run box and enter sysdm.cpl This should open up the System Properties window. Go to the Advanced tab and click the Environment Var...