Python is one of the most popular programming languages used for web development, automation, data science, AI, and scripting. Installing Python on Windows is simple and takes only a few minutes.
This guide explains how to install Python correctly on Windows 10 and Windows 11.
Step 1: Download Python
- Open your web browser
- Visit the official Python website: https://www.python.org
- Click Downloads
- Click Download Python for Windows
- Download the latest stable version
Always download Python from the official website to avoid security risks.
Step 2: Run the Python Installer
- Open the downloaded
.exefile - On the setup screen, check the box:
Add Python to PATH
This step is very important.
- Click Install Now
Wait for the installation process to complete.
Step 3: Verify Python Installation
After installation:
- Press Windows + R
- Type:
cmd
- Press Enter
- In Command Prompt, type:
python --version
If installed correctly, you will see the Python version number.
You can also check:
pip --version
This confirms that Python’s package manager is installed.
Alternative: Install Python from Microsoft Store
You can also install Python from the Microsoft Store:
- Open Microsoft Store
- Search for Python
- Select the official version
- Click Install
However, the official website installer provides more control and is recommended for developers.
How to Install Specific Python Version
If you need a specific version:
- Go to Downloads > Windows on python.org
- Click View all Python releases
- Download the required version
This is useful for compatibility with certain projects.
How to Set Python Environment Variables Manually
If you forgot to check “Add Python to PATH”:
- Open Control Panel
- Go to System
- Click Advanced system settings
- Select Environment Variables
- Edit the Path variable
- Add the Python installation directory
Restart Command Prompt after making changes.
How to Open Python IDLE
Python installs with IDLE (Integrated Development Environment).
To open it:
- Click Start
- Search for IDLE
- Open the Python IDLE app
You can write and run Python scripts here.
Install Python Packages Using Pip
To install additional libraries:
Open Command Prompt and type:
pip install package_name
Example:
pip install numpy
This installs third-party packages.
Common Installation Issues
If Python is not recognized:
- Restart your computer
- Verify PATH settings
- Reinstall Python
- Ensure you selected “Add to PATH”
Always check using python --version.
Final Thoughts
Installing Python on Windows 10 or Windows 11 is quick and beginner-friendly. The official installer from python.org is the safest and most flexible method. Once installed, you can start writing Python programs, installing packages, and building projects immediately.
FAQs
Is Python free
Yes, Python is completely free and open source.
Should I install 32-bit or 64-bit Python
Install the 64-bit version for modern systems.
What is pip in Python
Pip is Python’s package manager used to install libraries.
Do I need to add Python to PATH
Yes, it allows you to run Python from Command Prompt.
Does Python work on Windows 11
Yes, it works on both Windows 10 and Windows 11.

Discussion (0)
Be the first to comment.