No need for admin
access:
The reason the error is arising is because python
is not in your PATH
(meaning it can be called from any directory in the prompt
). You can check that its not in the PATH
by typing the following:
echo %path%
which will return lost of different directory paths
, but not the one to where you have python
installed.
To add python
to this (and get rid of your error
), follow these steps:
Open up control panel
.
Go to System
. (skip to this step with: Win+Break )
Go to the Advanced
tab at the top.
Click on Environment Variables
at the bottom.
In the section User variables for ___
, add a new one with New
.
In this pop-up
add the name
: path
and value
: C:\Python34
(or wherever it is installed).
Hope this helps as this is what I did to get python
to work from any directory in the command prompt
!