Sunday, January 25, 2026
HomeTech PostHow to install latest version of Python

How to install latest version of Python

Here’s the recommended way to install the latest Python on Windows (works for Windows 10 & 11):


✅ Method 1: Official Python Installer (Best for most users)

1. Download Python

  1. Go to https://www.python.org
  2. Click Downloads
    • It will automatically suggest the latest Python for Windows
  3. Click Download Python 3.x.x

2. Run the Installer

  1. Double-click the downloaded .exe file
  2. IMPORTANT: Check the box
    Add Python to PATH
  3. Click Install Now

📌 This installs:

  • Python
  • pip (package manager)
  • IDLE
  • Documentation

3. Verify Installation

Open Command Prompt (Win + Rcmd):

python --version

or

python -V

You should see something like:

Python 3.12.x

Check pip:

pip --version

✅ Method 2: Install via Microsoft Store (Easiest, but less control)

  1. Open Microsoft Store
  2. Search for Python
  3. Install the latest Python 3.x
  4. Verify with:
python --version

⚠️ Not ideal for advanced development or multiple Python versions.


🔧 Optional: Install for All Users or Custom Location

During installation, click Customize installation if you want:

  • A specific install folder
  • Python available to all users
  • Debug symbols or dev headers

🧪 Test Python

Run:

python

Then:

print("Hello, Python!")

Exit with:

exit()

🧠 Recommended Next Steps

  • Upgrade pip:
python -m pip install --upgrade pip
  • Install a code editor:
    • VS Code (recommended)
    • PyCharm
RELATED ARTICLES

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments