110

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?

Stevoisiak
  • 16,075
davewise
  • 1,203

5 Answers5

105

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.

Run5k
  • 16,463
  • 24
  • 53
  • 67
Michael Mrozek
  • 1,874
  • 1
  • 13
  • 14
16

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.

4
  • 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
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).

Stevoisiak
  • 16,075
vitorbal
  • 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
  • 611