Python pathsetting: Difference between revisions

From ACL@NCU
Jump to navigation Jump to search
Created page with "If you have the following error message after installing python and trying to run python or pip or the install_psychopy.bat, the path environmental variable hasn't been set co..."
 
No edit summary
 
Line 10: Line 10:
https://anthonydebarros.com/2015/08/16/setting-up-python-in-windows-10/  
https://anthonydebarros.com/2015/08/16/setting-up-python-in-windows-10/  


In both cases, note that the path to add is "C:\Python27;C:\Python27\Scripts" (without the quote).
In both cases, note that the path to append to the end of the existing path string is ";C:\Python27;C:\Python27\Scripts" (without the quote).

Latest revision as of 21:55, 9 March 2018

If you have the following error message after installing python and trying to run python or pip or the install_psychopy.bat, the path environmental variable hasn't been set correctly during the python installation process.

To set up the environmental variable "Path" correctly, follow instructions from the links below, depending on which version of windows (win7 or win10) your system is:

win7

https://www.youtube.com/watch?v=dU_ca27EGT8

win10

https://anthonydebarros.com/2015/08/16/setting-up-python-in-windows-10/

In both cases, note that the path to append to the end of the existing path string is ";C:\Python27;C:\Python27\Scripts" (without the quote).