How to Install Python on Windows 11 (Complete Guide for Beginners)
In this guide, you will learn how to install Python on Windows step-by-step. This tutorial is beginner-friendly and includes screenshots for easy understanding.
🔽 Step 1 — Download Python InstallerOpen the official website: 👉 https://www.python.org/downloads/
- Click Download Python 3.11.x (latest version)
- The installer file will be downloaded to your system
⚙️ Step 2 — Run the Installer
Open the downloaded .exe file
IMPORTANT: Check both options:
✔ Add Python to PATH
✔ Install launcher for all users
✔ Click Install Now
👉 Wait for installation to complete



✅ Step 3 — Verify Python Installation
🔹 Check Python version
- Open Command Prompt (cmd)
- Type: python --version
👉 If installed correctly, you will see: Python 3.11.4

📦 Step 4 — Verify pip Installation
- pip is Python’s package manager
- Check pip version: pip --version
👉 Output example: pip 23.1.2 from ...

Comments
Post a Comment