Trusted answers to developer questions

How to add Python to PATH variable in Windows

Get Started With Machine Learning

Learn the fundamentals of Machine Learning with this free course. Future-proof your career by adding ML skills to your toolkit — or prepare to land a job in AI or Data Science.

What is a PATH variable?

A path variable contains a list of paths to executable programs in the machine. These programs can be placed anywhere in the machine, but when added to the PATH variable, they can be accessed from any directory in the system.

Whenever we enter a command into the terminal, the system looks up the PATH variable for the path where the program is placed, which refers to the command. If the path to the required file is not found, it responds with an error message stating that​ the specified command was not recognized.

svg viewer

Steps to add Python to PATH

Below are the steps we must take to add python to our PATH variable.

  1. First, we must find the directory where we installed Python. A typical installation would have the following path, C:\Users\MyUserName\AppData\Local\Programs\Python\Python310

  2. Now, we will need to add this to the PATH variable, we right click on "This PC" and go to "Properties".

  3. Then, we click on the "Advanced system settings" in the menu on the left.going

  4. In the bottom right, we can see a button labeled "Environment Variables". We will click on it to open another window to edit these variables.

  5. Now, we select the "Path variable" in the "System variables" section and click "Edit". The next screen will show all the directories currently part of the PATH variable.

  6. Another window opens up where we can see all the paths for the currently configured system variables. To add a new path for our Python program, we will click on the "New" button on the right side and paste the path in Step 1

  7. We have successfully added the path for our Python program to our system's environment variables. The best practice is to restart the system afterward for the change to occur.

  8. Now, we can verify if the PATH variable was configured correctly by opening up the terminal and entering the command python --version.

After all the following steps are completed, when we run the command on the command prompt, we should get a similar output to the one shown below

RELATED TAGS

python
windows
path
variable
executable
Copyright ©2024 Educative, Inc. All rights reserved
Did you find this helpful?