Download the Python Install Manager (MSIX) or use Microsoft Store: Search for Python Install Manager (ID: 9NQ7512CXL7T) and install.3. During install, opt to add to PATH if prompted (e.g., %LocalAppData%\Python\bin).
Verify: Open Command Prompt/PowerShell, run py --version or python --version (should show 3.14.3).
macOS
Download and run python-3.14.3-macos11.pkg from python.org.
Linux
Use package manager: e.g., sudo apt update && sudo apt install python3 python3-pip (Ubuntu) or compile from source.
Launch IDLE (search 'IDLE') and run print('Hello, Python!').
Why this step matters:
-Creates a solid foundation for executing code reliably
-Prepares you for real-world development workflows
30-60 minutes
Web browser, Command Prompt/Terminal, Python installer, IDLE
$0
Definition of Done
β’`python --version` displays 3.14.x
β’IDLE launches and executes print('Hello')
Common Mistakes to Avoid
β Not adding Python to PATH, causing 'command not found'
βReinstall with PATH option checked or manually add `%LocalAppData%\Python\bin` to PATH
β Using Microsoft Store without enabling aliases
βGo to 'Manage app execution aliases' and enable Python entries
β Installing outdated version
βAlways download from python.org/downloads for latest stable
2
Following along, or just reading? π
Spin up a personalized βlearn Pythonβ plan you can save, check off, and return to anytime β unlimited on the free trial.