Installing Python on a Windows machine is a relatively straightforward process. Here are the steps to follow:
Downloading
Click on the link below 👇 and download the latest version of Python. Be sure to choose the version that is compatible with your operating system.
Download compatible versions
Python 3.9.0 : Download
Python 3.8.0 : Download
Python 3.7.0 : Download
Python 3.6.0 : Download
Python 3.5.0 : Download
Installation
- Once the download is complete, double-click the installer file to begin the installation process.
- Click
Run
when prompted by the User Account Control window. - You must click on the "Add Python to Path"
checkbox

Now
- Click on the
Install Now
option - The installer will now begin installing Python on your machine. This may take a few minutes.
- Once the installation is complete, click
Finish
to exit the installer.
That's it! Python is now installed on your machine and ready to use.
Verify Installation
To verify the installation,
- Click on the Start menu, type
cmd
in the search bar, and press Enter. - Open
Command Prompt
from there - Type
python
and Press Enter

This should bring up the Python interpreter, which you can use to run Python commands and scripts.
If not working
After successful installation, if it not working you might not check the add path
option
Note: If you want to be able to use Python from any directory on your machine, you will need to add the Python installation directory to your PATH
environment variable.
Add Path
- Open the Start menu and search for "Environment Variables"
- Click "Edit the system environment variables"
- In the System Properties window, click the "Environment Variables" button
- Under "System Variables", scroll down and find the "Path" variable, then click "Edit"
- Go to your directory on
C drive
where python is installed - Copy the address from
Address Bar
it will be like (C:\fodlernames\Python38-32) - Click "New" and Paste the path to your Python installation
- Click "OK" to save the changes and close all windows
- Open a new command prompt and type
python
to ensure it's working.