Skip to content

Python Installation Guide

Shared guide index: lang.md

Step 1: Download Python Installer

  1. Go to the official Python download page.
  2. Download Python 3 for Windows; Python 3.11.9 is recommended.
  3. Run the installer.

Official site:

  • https://www.python.org/downloads/
  • https://www.python.org/downloads/release/python-3119/

Step 2: Customize Install and Add to PATH

  1. In the installer, click Customize installation.
  2. Make sure Python is added to PATH.
  3. Continue to the next step.

Customize and PATH

Step 3: Advanced Options and Install

  1. Keep pip enabled.
  2. Enable install options for all users if needed.
  3. Click Install.

Python Setup Step 2

Step 4: Complete Installation

  1. Wait for installation to finish.
  2. If shown, run path length fix.
  3. Close the installer.

Python Setup Step 3

Step 5: Verify in Terminal

Run:

python --version
pip --version

If both commands return versions, installation is complete.