✅ Step 1: Download Python
1. Open your browser (e.g., Chrome).
2. Go to the official Python download page:
👉 [Link]
3. Click on the “Downloads” tab.
4. Click the yellow button “Download Python 3.x.x” (latest version).
✅ Step 2: Run the Installer
1. Locate the downloaded file (usually in your Downloads folder), e.g., python-3.13.5-
[Link].
2. Double-click the file to open the installer.
✅ Step 3: Important Installation Settings
1. Check the box → ✅ Add Python 3.x to PATH
2. Click the button → 🟩 Install Now
✅ Step 4: Finish Installation
1. Wait for installation to complete (takes a few minutes).
2. When it finishes, you’ll see “Setup was successful.”
3. (Optional) Click “Disable path length limit” if prompted.
4. Click Close.
✅ Step 5: Verify Installation
1. Press Windows + R, type cmd, and press Enter.
2. In the Command Prompt, type:
bash
python --version
or
bash
py –version
3. You should see something like:
nginx
Python 3.13.5
✅ Step 6: Test Python
1. In the same Command Prompt, type:
python
2. You’ll enter Python interactive mode:
python-repl
>>> print("Hello, Python!")
Hello, Python!
3. Type exit() and press Enter to quit.