I’ve just released the next install manager update, the first (hopefully only) of 2026. Automatic updates should start within the next 24 hours.
Global script entry points
With this release, Python install manager will now generate global shortcut executables for installed packages that register through their entry_points.txt file. For users who add the global shortcuts directory to their PATH (as prompted on first run, and reminded on every install), this will make any globally installed packages available as well, without having to add an interpreter-specific directory to PATH. Primarily, this will handle issues with pip.exe not being present immediately after install.
It’s important to note that the install manager can only add shortcuts when it is doing installs, and so packages mostly won’t have shortcuts immediately on install. Users need to run py install --refresh (or another install) to get them. My hope is that one day installers (such as pip) will learn to run this command themselves, but until then, users will just have to get used to it - short of adding a task to constantly scan their hard drive, there’s no way for us to know about new package installs. (My actual hope is that people will use virtual environments instead of global installs, but feedback so far has shown that many won’t.)
Default Python install for Windows
One of the promises in the original proposal was that the Python install manager would integrate nicely with the built-in python.exe redirector that comes with Windows. With this release, after a short period to demonstrate stability, we’ll be getting that redirector updated to refer to the install manager (it’s currently still on the last 3.13 release). This should result in over 10K new installs per day, which means we will likely hear more feedback, but I think we’re ready for it.
Minor changes in this release
- authenticated proxy servers now auto-logon when the OS knows the credentials
- shebang lines in scripts may now choose the version for automatic installs (e.g. if you
py exec my-script.pyand it contains#! python3.13but you don’t have 3.13 installed) - shebang lines won’t cause
pyw/pythonwwindowed launchers to display consoles (e.g. if you didn’t specify#! pythonwas the shebang)
Feedback
All feedback and issues can come to the python/pymanager repository.
