Skip to content

PATH Setup in Windows

James Small edited this page Mar 29, 2018 · 7 revisions

How to set the application PATH environment variable - Windows

  • Also - python not found/recognized
  • Also - <application> not found/recognized

Change PATH using GUI/Graphical Tools (Easiest)

  • Click on the Windows Button to open the Start Menu
    • Windows 7 Start Button
  • Right-click on Computer and select Properties
    • Windows 7, Computer Icon, Properties
  • Click on Advanced system settings
    • Windows 7, System Control Panel, Advanced system settings
  • Click on Environment Variables
    • System Properties
  • Under System variables, scroll down to find "Path" and select it
    • Environment Variables
  • Click Edit...
    • Edit System Variable
  • Click on the end key or make sure your cursor is all the way to the right in the Variable value: box
    • If you accidentally mess something up, just click Cancel, and then click Edit... to get back here
  • Add a semicolon to the end of the current path variable value:
    • For example, if current value is: C:\Program Files\Wireshark;C:\Program Files\PuTTY
    • Change this to: C:\Program Files\Wireshark;C:\Program Files\PuTTY;
    • Edit System Variable, Add semicolon to PATH
  • Add the Application Path
    • For example, if you installed Python in C:\Program Files (x86)\Python36: C:\Program Files\Wireshark;C:\Program Files\PuTTY;C:\Program Files (x86)\Python36
    • Edit System Variable, Add new PATH element
  • Click OK
  • Again, cick OK
  • Again, click OK

  • Test the PATH Change:
    • Open a new PowerShell or Cmd prompt
    • Enter python
    • If your prompt changes to >>> you're in business
    • PowerShel, python REPL
    • If not, try going through the steps again and double checking your work. If this doesn't work, please open an issue.

It didn't work for you? Well then, please open an issue!

Return to Wiki/FAQ Home Page


Note: Tested on Windows 7