Executable installer will stop being released with Python 3.16

Published: (May 3, 2026 at 03:25 AM EDT)
2 min read

Source: Hacker News

Release date: March 31, 2026

The Python install manager for Windows is the tool for installing and managing Python runtimes. The traditional executable installer will stop being released with Python 3.16.

Installation options

  • Microsoft Store – recommended for most users

  • WinGet – run the command:

    winget install 9NQ7512CXL7T
  • Direct download – see the Files section below.

Full documentation for the Python install manager is available in the official docs: . It includes troubleshooting guides, instructions for administrative installs, and details on the legacy MSI installer. The Store app or the MSIX package is the recommended distribution method.

Compatibility

  • Supports Windows 10 (or Windows Server 2022) and later.
  • Can install Python versions back to 3.5.
  • Use py list --online to view all available packages, including the embeddable distro, experimental free‑threaded builds, and packages with the standard‑library test suite and debug symbols.

Usage notes

  • It is advisable to uninstall the previous Python launcher before installing the manager, as both use the py command.

  • After installation, the manager runs a configuration checker automatically. It can also be launched manually:

    py install --configure
    # or
    pymanager install --configure
  • Removing the install manager does not uninstall existing Python versions. To perform a full cleanup, run:

    py uninstall --purge
  • The manager updates automatically within a day of a new release; no manual re‑download is required.

Feedback

Please file any issues or suggestions on the GitHub repository: .

Changelog

Files

VersionOperating systemDescriptionFile sizeMD5 checksum
Installer (MSIX)WindowsBundles Python 3.14.344.1 MB6C778EC0E29ECCC5CBF47CD1A3D43346
MSI packageWindowsSee documentation before use9.5 MBFE937DB651C99A20F7048C20018A2692
0 views
Back to Blog

Related posts

Read more »

Getting Started with Python

Today I started learning Python, and I explored some fundamental concepts that helped me understand how Python actually works behind the scenes. What is Python?...

FastAPI Quickstart in 2026

What is FastAPI? FastAPI is a modern Python framework for building RESTful APIs with high performance and minimal boilerplate. In 2026 it has become an industr...

Selenium for automation testing

What is Selenium Selenium is a free automated testing framework used to validate web applications across different browsers and platforms. You can use multiple...