Environmental Path To Python Not Working?
I have Installed Python 3.4 onto a new PC. Python works but I am trying to get pip to work on this. I have made a path for Python which is below. C:\Python34\python.exe When i ru
Solution 1:
It seems that you haven't configured your PATH
variable correctly. In order to do so:
- Hold down the Win key and press Pause.
- Click Advanced System Settings.
- Click Environment Variables.
- Append
;C:\Python34
to thePATH
variable. - Restart Command Prompt.
(You may also just run set PYTHONPATH=%PYTHONPATH%;C:\Python34
in the cmd
)
Further information is available in The Official Python Installation Guide for Windows.
Post a Comment for "Environmental Path To Python Not Working?"