How to install Python on Windows
Last Updated :
22 Dec, 2025
Python is a high-level programming language that is widely used because it is easy to learn, flexible, and powerful. It is used in many fields such as web development, data science, automation, and software development. Installing Python on a Windows computer is a simple process and only takes a few basic steps.
How to Install Python in Windows
To download Python on your system, you can use the following steps:
Step 1: Choose the Python Version to Install
Open your web browser and visit the official Python website: https://www.python.org/downloads/%3C/span>
On the downloads page, look for the latest stable version of Python 3 (Python 3.10 or newer is recommended). Choose the correct installer based on your system type:
- Windows installer (64-bit): for most modern computers
- Windows installer (32-bit): for older systems
Click the installer link to download the .exe file.
Step 2: Download and Start the Python Installer
After the download is complete, locate the installer file (for example: python-3.x.x-amd64.exe) and double-click it to start the installation.
On the installer screen:
- Check Install launcher for all users
- Very important: Check Add python.exe to PATH
- Adding Python to PATH allows you to run Python from the Command Prompt easily.
Now, click Install Now to begin the installation process.
Python SetupStep 3: Run the Installation Process
Once you click Install Now, Python will start installing on your Windows system. This may take a few minutes. When the installation is complete, you will see a message confirming that Python has been installed successfully.
Click Close to finish.
Python Successfully installedStep 4: Verify Python Installation on Windows
After installation, you should confirm that Python is installed correctly.
- Click the Start menu
- Type cmd and open Command Prompt
- Type the following command and press Enter:
python --version
Python versionIf Python is installed correctly, you will see the installed Python version displayed on the screen.
You can also check the installation using IDLE, which comes with Python.
- Open the Start menu
- Type IDLE
- Click on IDLE (Python 3.x)
If the Python IDLE window opens, it means Python has been installed successfully on your system.
Python IDLEGetting Started with Python
Python is easy to learn and write. You can create Python programs using simple text editors like Notepad or Notepad++, but using an IDE makes coding easier and more efficient. IDEs offer helpful features such as syntax highlighting, debugging tools, and code suggestions.
Once Python is installed on your system, you can:
- Write and run Python programs
- Learn basic to advanced Python concepts
- Use Python for automation, scripting, and development
You can refer to this article to learn more about Python - Python Tutorial
If you want to install Python on other operating systems, you can refer to the links below:
Explore
Python Fundamentals
Python Data Structures
Advanced Python
Data Science with Python
Web Development with Python
Python Practice