How do I add Python to the Windows PATH?

88

23

I want to be able to run Python commands from the Windows CMD. However, if I don't specify Python's full path for each command, I get an error saying "Python is not recognized as an internal or external command, operable program or batch file."

How do I add Python to the Windows PATH permanently?

davewise

Posted 2010-05-19T21:54:19.123

Reputation: 983

Answers

86

For Windows 10/8/7:

  1. Open System Properties (Right click Computer in the start menu, or use the keyboard shortcut Win+Pause)
  2. Click Advanced system settings in the sidebar.
  3. Click Environment Variables...
  4. Select PATH in the System variables section
  5. Click Edit
  6. Add Python's path to the end of the list (the paths are separated by semicolons). For example:

    C:\Windows;C:\Windows\System32;C:\Python27
    

For Windows XP:

  1. Open System Properties (Type it in the start menu, or use the keyboard shortcut Win+Pause)
  2. Switch to the Advanced tab
  3. Click Environment Variables...
  4. Select PATH in the System variables section
  5. Click Edit
  6. Add Python's path to the end of the list (the paths are separated by semicolons). For example:

    C:\Windows;C:\Windows\System32;C:\Python27
    
  7. Test on a new terminal window or if using an integrated terminal within a text editor, close and restart your editor or the changes won't be applied.

Michael Mrozek

Posted 2010-05-19T21:54:19.123

Reputation: 1 654

1The interesting thing here is where Python actually gets installed. Earlier versions would go directly to a folder off the root (C:/Python27) but now it seems the default web install places it in the user's AppData/Local here: C:\Users{yourUserNameGoesHere}\AppData\Local\Programs\Python\Python36 I didn't check the box as Python was installing, but after adding this to the end of the path as other users have stated, it seems to work. At least, new command windows had this in the path, and python would start. Git BASH windows still used the old path and probably require a reboot. – MikeM – 2017-09-11T04:54:34.110

@alord1689 Right-click "My Computer" on the desktop and choose "Properties" – Michael Mrozek – 2012-11-01T04:23:52.763

13

For anyone trying to achieve this with Python 3.3+, the Windows installer now includes an option to add python.exe to the system search path. Read more in the docs.

Andreas Bergström

Posted 2010-05-19T21:54:19.123

Reputation: 265

6Besides that it installs 3.7 into C:\Users\${username}\AppData\Local\Programs\Python\Python37 - just sayin – Csaba Toth – 2019-01-22T23:33:15.687

3

  • Click on the windows button to start a search
  • type in "system env" and click on the "edit system environment variables"
  • Now click on the advanced tab on the top
  • At the bottom click the button that says "environment variables"
  • Now on the "user variables'your user name'" box at the top of the windows click on path then edit
  • This should lead to another window where you want to click "new" and type in the commands: "C:\Python27" and "C:\Python27\scripts"
  • Python should now work on command prompt

Just A Regular Guy

Posted 2010-05-19T21:54:19.123

Reputation: 31

1This is the same answer already posted in the accepted answer. Please to not post answers unless they add helpful and unique information to the discussion. – music2myear – 2018-02-12T22:07:56.477

1

As seen in the Python documentation:

Windows has a built-in dialog for changing environment variables (following guide applies to XP classical view): Right-click the icon for your machine (usually located on your Desktop and called “My Computer”) and choose Properties there. Then, open the Advanced tab and click the Environment Variables button.

In short, your path is:

My Computer ‣ Properties ‣ Advanced ‣ Environment Variables In this dialog, you can add or modify User and System variables. To change System variables, you need non-restricted access to your machine (i.e. Administrator rights).

vitorbal

Posted 2010-05-19T21:54:19.123

Reputation: 119

0

Right-click on My Computer, choose Properties. Then find the Environment Variables button (on Win7, it's under the Advanced tab; I forget where it is on other versions of Windows). Click that, and under System variables, edit the Path one.

Amber

Posted 2010-05-19T21:54:19.123

Reputation: 551