4.Using Python on Windows¶
This document aims to give an overview of Windows-specific behaviour you shouldknow about when using Python on Microsoft Windows.
Unlike most Unix systems and services, Windows does not include a systemsupported installation of Python. Instead, Python can be obtained from a numberof distributors, including directly from the CPython team. Each Pythondistribution will have its own benefits and drawbacks, however, consistency withother tools you are using is generally a worthwhile benefit. Before committingto the process described here, we recommend investigating your existing tools tosee if they can provide Python directly.
To obtain Python from the CPython team, use the Python Install Manager. Thisis a standalone tool that makes Python available as global commands on yourWindows machine, integrates with the system, and supports updates over time. Youcan download the Python Install Manager frompython.org/downloads or throughtheMicrosoft Store app.
Once you have installed the Python Install Manager, the globalpython
command can be used from any terminal to launch your current latest version ofPython. This version may change over time as you add or remove differentversions, and thepylist
command will show which is current.
In general, we recommend that you create avirtual environmentfor each project and run<env>\Scripts\Activate
in your terminal to use it.This provides isolation between projects, consistency over time, and ensuresthat additional commands added by packages are also available in your session.Create a virtual environment usingpython-mvenv<envpath>
.
If thepython
orpy
commands do not seem to be working, please see theTroubleshooting section below. There aresometimes additional manual steps required to configure your PC.
Apart from using the Python install manager, Python can also be obtained asNuGet packages. SeeThe nuget.org packages below for more information on thesepackages.
The embeddable distros are minimal packages of Python suitable for embeddinginto larger applications. They can be installed using the Python installmanager. SeeThe embeddable package below for more information on thesepackages.
4.1.Python Install Manager¶
4.1.1.Installation¶
The Python install manager can be installed from theMicrosoft Store appor downloaded and installed frompython.org/downloads. The two versions areidentical.
To install through the Store, simply click “Install”. After it has completed,open a terminal and typepython
to get started.
To install the file downloaded from python.org, either double-click and select“Install”, or runAdd-AppxPackage<pathtoMSIX>
in Windows Powershell.
After installation, thepython
,py
, andpymanager
commands should beavailable. If you have existing installations of Python, or you have modifiedyourPATH
variable, you may need to remove them or undo themodifications. SeeTroubleshooting for more help with fixingnon-working commands.
When you first install a runtime, you will likely be prompted to add a directoryto yourPATH
. This is optional, if you prefer to use thepy
command, but is offered for those who prefer the full range of aliases (suchaspython3.14.exe
) to be available. The directory will be%LocalAppData%\Python\bin
by default, but may be customized by anadministrator. Click Start and search for “Edit environment variables for youraccount” for the system settings page to add the path.
Each Python runtime you install will have its own directory for scripts. Thesealso need to be added toPATH
if you want to use them.
The Python install manager will be automatically updated to new releases. Thisdoes not affect any installs of Python runtimes. Uninstalling the Python installmanager does not uninstall any Python runtimes.
If you are not able to install an MSIX in your context, for example, you areusing automated deployment software that does not support it, or are targetingWindows Server 2019, please seeAdvanced Installation below for moreinformation.
4.1.2.Basic Use¶
The recommended command for launching Python ispython
, which will eitherlaunch the version requested by the script being launched, an active virtualenvironment, or the default installed version, which will be the latest stablerelease unless configured otherwise. If no version is specifically requested andno runtimes are installed at all, the current latest release will be installedautomatically.
For all scenarios involving multiple runtime versions, the recommended commandispy
. This may be used anywhere in place ofpython
or the olderpy.exe
launcher. By default,py
matches the behaviour ofpython
, butalso allows command line options to select a specific version as well assubcommands to manage installations. These are detailed below.
Because thepy
command may already be taken by the previous version, thereis also an unambiguouspymanager
command. Scripted installs that areintending to use Python install manager should consider usingpymanager
, dueto the lower chance of encountering a conflict with existing installs. The onlydifference between the two commands is when running without any arguments:py
will install and launch your default interpreter, whilepymanager
will display help (pymanagerexec...
provides equivalent behaviour topy...
).
Each of these commands also has a windowed version that avoids creating aconsole window. These arepyw
,pythonw
andpymanagerw
. Apython3
command is also included that mimics thepython
command. It is intended tocatch accidental uses of the typical POSIX command on Windows, but is not meantto be widely used or recommended.
To launch your default runtime, runpython
orpy
with the arguments youwant to be passed to the runtime (such as script files or the module to launch):
$> py...$> python my-script.py...$> py -m this...
The default runtime can be overridden with thePYTHON_MANAGER_DEFAULT
environment variable, or a configuration file. SeeConfiguration forinformation about configuration settings.
To launch a specific runtime, thepy
command accepts a-V:<TAG>
option.This option must be specified before any others. The tag is part or all of theidentifier for the runtime; for those from the CPython team, it looks like theversion, potentially with the platform. For compatibility, theV:
may beomitted in cases where the tag refers to an official release and starts with3
.
$> py -V:3.14 ...$> py -V:3-arm64 ...
Runtimes from other distributors may require thecompany to be included aswell. This should be separated from the tag by a slash, and may be a prefix.Specifying the company is optional when it isPythonCore
, and specifying thetag is optional (but not the slash) when you want the latest release from aspecific company.
$> py -V:Distributor\1.0 ...$> py -V:distrib/ ...
If no version is specified, but a script file is passed, the script will beinspected for ashebang line. This is a special format for the first line ina file that allows overriding the command. SeeShebang lines for moreinformation. When there is no shebang line, or it cannot be resolved, the scriptwill be launched with the default runtime.
If you are running in an active virtual environment, have not requested aparticular version, and there is no shebang line, the default runtime will bethat virtual environment. In this scenario, thepython
command was likelyalready overridden and none of these checks occurred. However, this behaviourensures that thepy
command can be used interchangeably.
When you launch eitherpython
orpy
but do not have any runtimesinstalled, and the requested version is the default, it will be installedautomatically and then launched. Otherwise, the requested version will beinstalled if automatic installation is configured (most likely by settingPYTHON_MANAGER_AUTOMATIC_INSTALL
totrue
), or if thepyexec
orpymanagerexec
forms of the command were used.
4.1.3.Command Help¶
Thepyhelp
command will display the full list of supported commands, alongwith their options. Any command may be passed the-?
option to display itshelp, or its name passed topyhelp
.
$> py help$> py help install$> py install /?
All commands support some common options, which will be shown bypyhelp
.These options must be specified after any subcommand. Specifying-v
or--verbose
will increase the amount of output shown, and-vv
willincrease it further for debugging purposes. Passing-q
or--quiet
willreduce output, and-qq
will reduce it further.
The--config=<PATH>
option allows specifying a configuration file tooverride multiple settings at once. SeeConfiguration below for moreinformation about these files.
4.1.4.Listing Runtimes¶
$> py list [-f=|--format=<FMT>] [-1|--one] [--online|-s=|--source=<URL>] [<TAG>...]
The list of installed runtimes can be seen usingpylist
. A filter may beadded in the form of one or more tags (with or without company specifier), andeach may include a<
,<=
,>=
or>
prefix to restrict to a range.
A range of formats are supported, and can be passed as the--format=<FMT>
or-f<FMT>
option. Formats includetable
(a user friendly table view),csv
(comma-separated table),json
(a single JSON blob),jsonl
(oneJSON blob per result),exe
(just the executable path),prefix
(just theprefix path).
The--one
or-1
option only displays a single result. If the defaultruntime is included, it will be the one. Otherwise, the “best” result is shown(“best” is deliberately vaguely defined, but will usually be the most recentversion). The result shown bypylist--one<TAG>
will match the runtimethat would be launched bypy-V:<TAG>
.
The--only-managed
option excludes results that were not installed by thePython install manager. This is useful when determining which runtimes may beupdated or uninstalled through thepy
command.
The--online
option is short for passing--source=<URL>
with the defaultsource. Passing either of these options will search the online index forruntimes that can be installed. The result shown bypylist--online--one<TAG>
will match the runtime that would be installed bypyinstall<TAG>
.
$> py list --online 3.14
For compatibility with the old launcher, the--list
,--list-paths
,-0
and-0p
commands (e.g.py-0p
) are retained. They do not allowadditional options, and will produce legacy formatted output.
4.1.5.Installing Runtimes¶
$> py install [-s=|--source=<URL>] [-f|--force] [-u|--update] [--dry-run] [<TAG>...]
New runtime versions may be added usingpyinstall
. One or more tags may bespecified, and the special tagdefault
may be used to select the default.Ranges are not supported for installation.
The--source=<URL>
option allows overriding the online index that is used toobtain runtimes. This may be used with an offline index, as shown inOffline Installs.
Passing--force
will ignore any cached files and remove any existing installto replace it with the specified one.
Passing--update
will replace existing installs if the new version is newer.Otherwise, they will be left. If no tags are provided with--update
, allinstalls managed by the Python install manager will be updated if newer versionsare available. Updates will remove any modifications made to the install,including globally installed packages, but virtual environments will continue towork.
Passing--dry-run
will generate output and logs, but will not modify anyinstalls.
In addition to the above options, the--target
option will extract theruntime to the specified directory instead of doing a normal install. This isuseful for embedding runtimes into larger applications.
$> py install ... [-t=|--target=<PATH>] <TAG>
4.1.6.Offline Installs¶
To perform offline installs of Python, you will need to first create an offlineindex on a machine that has network access.
$> py install --download=<PATH> ... <TAG>...
The--download=<PATH>
option will download the packages for the listed tagsand create a directory containing them and anindex.json
file suitable forlater installation. This entire directory can be moved to the offline machineand used to install one or more of the bundled runtimes:
$> py install --source="<PATH>\index.json" <TAG>...
The Python install manager can be installed by downloading its installer andmoving it to another machine before installing.
Alternatively, the ZIP files in an offline index directory can simply betransferred to another machine and extracted. This will not register the installin any way, and so it must be launched by directly referencing the executablesin the extracted directory, but it is sometimes a preferable approach in caseswhere installing the Python install manager is not possible or convenient.
In this way, Python runtimes can be installed and managed on a machine withoutaccess to the internet.
4.1.7.Uninstalling Runtimes¶
$> py uninstall [-y|--yes] <TAG>...
Runtimes may be removed using thepyuninstall
command. One or more tagsmust be specified. Ranges are not supported here.
The--yes
option bypasses the confirmation prompt before uninstalling.
Instead of passing tags individually, the--purge
option may be specified.This will remove all runtimes managed by the Python install manager, includingcleaning up the Start menu, registry, and any download caches. Runtimes thatwere not installed by the Python install manager will not be impacted, andneither will manually created configuration files.
$> py uninstall [-y|--yes] --purge
The Python install manager can be uninstalled through the Windows “Installedapps” settings page. This does not remove any runtimes, and they will still beusable, though the globalpython
andpy
commands will be removed.Reinstalling the Python install manager will allow you to manage these runtimesagain. To completely clean up all Python runtimes, run with--purge
beforeuninstalling the Python install manager.
4.1.8.Configuration¶
Python install manager is configured with a hierarchy of configuration files,environment variables, command-line options, and registry settings. In general,configuration files have the ability to configure everything, including thelocation of other configuration files, while registry settings areadministrator-only and will override configuration files. Command-line optionsoverride all other settings, but not every option is available.
This section will describe the defaults, but be aware that modified oroverridden installs may resolve settings differently.
A global configuration file may be configured by an administrator, and would beread first. The user configuration file is stored at%AppData%\Python\pymanager.json
(by default) and is read next,overwriting any settings from earlier files. An additional configuration filemay be specified as thePYTHON_MANAGER_CONFIG
environment variable or the--config
command line option (but not both).
The following settings are those that are considered likely to be modified innormal use. Later sections list those that are intended for administrativecustomization.
Config Key | Environment Variable | Description |
---|---|---|
|
| The preferred defaultversion to launch or install. By default, this is interpreted as the mostrecent non-prerelease version from the CPython team. |
|
| The preferreddefault platform to launch or install. This is treated as a suffix to thespecified tag, such that |
|
| The location where log files arewritten. By default, |
|
| True toallow automatic installs when specifying a particular runtime to launch.By default, true. |
|
| True toallow listing and launching runtimes that were not installed by the Pythoninstall manager, or false to exclude them. By default, true. |
|
| True to allow shebangs in |
|
| Setthe default level of output (0-50) By default, 20. Lower values produce moreoutput. The environment variables are boolean, and may produce additionaloutput during startup that is later suppressed by other configuration. |
|
| True to confirm certain actionsbefore taking them (such as uninstall), or false to skip the confirmation. Bydefault, true. |
|
| Override the indexfeed to obtain new installs from. |
|
| Specify the defaultformat used by the |
Dotted names should be nested inside JSON objects, for example,list.format
would be specified as{"list":{"format":"table"}}
.
4.1.9.Shebang lines¶
If the first line of a script file starts with#!
, it is known as a“shebang” line. Linux and other Unix like operating systems have nativesupport for such lines and they are commonly used on such systems to indicatehow a script should be executed. Thepython
andpy
commands allow thesame facilities to be used with Python scripts on Windows.
To allow shebang lines in Python scripts to be portable between Unix andWindows, a number of ‘virtual’ commands are supported to specify whichinterpreter to use. The supported virtual commands are:
/usr/bin/env<ALIAS>
/usr/bin/env-S<ALIAS>
/usr/bin/<ALIAS>
/usr/local/bin/<ALIAS>
<ALIAS>
For example, if the first line of your script starts with
#! /usr/bin/python
The default Python or an active virtual environment will be located and used.As many Python scripts written to work on Unix will already have this line,you should find these scripts can be used by the launcher without modification.If you are writing a new script on Windows which you hope will be useful onUnix, you should use one of the shebang lines starting with/usr
.
Any of the above virtual commands can have<ALIAS>
replaced by an alias froman installed runtime. That is, any command generated in the global aliasesdirectory (which you may have added to yourPATH
environment variable)can be used in a shebang, even if it is not on yourPATH
. This allowsthe use of shebangs like/usr/bin/python3.12
to select a particular runtime.
If no runtimes are installed, or if automatic installation is enabled, therequested runtime will be installed if necessary. SeeConfigurationfor information about configuration settings.
The/usr/bin/env
form of shebang line will also search thePATH
environment variable for unrecognized commands. This corresponds to thebehaviour of the Unixenv
program, which performs the same search, butprefers launching known Python commands. A warning may be displayed whensearching for arbitrary executables, and this search may be disabled by theshebang_can_run_anything
configuration option.
Shebang lines that do not match any of patterns are treated asWindowsexecutable paths that are absolute or relative to the directory containing thescript file. This is a convenience for Windows-only scripts, such as thosegenerated by an installer, since the behavior is not compatible with Unix-styleshells. These paths may be quoted, and may include multiple arguments, afterwhich the path to the script and any additional arguments will be appended.This functionality may be disabled by theshebang_can_run_anything
configuration option.
4.1.10.Advanced Installation¶
For situations where an MSIX cannot be installed, such as some olderadministrative distribution platforms, there is an MSI available from thepython.org downloads page. This MSI has no user interface, and can only performper-machine installs to its default location in Program Files. It will attemptto modify the systemPATH
environment variable to include this installlocation, but be sure to validate this on your configuration.
Note
Windows Server 2019 is the only version of Windows that CPython supports thatdoes not support MSIX. For Windows Server 2019, you should use the MSI.
Be aware that the MSI package does not bundle any runtimes, and so is notsuitable for installs into offline environments without also creating an offlineinstall index. SeeOffline Installs andAdministrative Configurationfor information on handling these scenarios.
Runtimes installed by the MSI are shared with those installed by the MSIX, andare all per-user only. The Python install manager does not support installingruntimes per-machine. To emulate a per-machine install, you can usepyinstall--target=<sharedlocation>
as administrator and add your own system-widemodifications toPATH
, the registry, or the Start menu.
When the MSIX is installed, but commands are not available in thePATH
environment variable, they can be found under%LocalAppData%\Microsoft\WindowsApps\PythonSoftwareFoundation.PythonManager_3847v3x7pw1km
or%LocalAppData%\Microsoft\WindowsApps\PythonSoftwareFoundation.PythonManager_qbz5n2kfra8p0
,depending on whether it was installed from python.org or through the WindowsStore. Attempting to run the executable directly from Program Files is notrecommended.
To programmatically install the Python install manager, it is easiest to useWinGet, which is included with all supported versions of Windows:
$>wingetinstall9NQ7512CXL7T-e--accept-package-agreements--disable-interactivity# Optionally run the configuration checker and accept all changes$>pyinstall--configure-y
To download the Python install manager and install on another machine, thefollowing WinGet command will download the required files from the Store to yourDownloads directory (add-d<location>
to customize the output location).This also generates a YAML file that appears to be unnecessary, as thedownloaded MSIX can be installed by launching or using the commands below.
$>wingetdownload9NQ7512CXL7T-e--skip-license--accept-package-agreements--accept-source-agreements
To programmatically install or uninstall an MSIX using only PowerShell, theAdd-AppxPackage andRemove-AppxPackage PowerShell cmdlets are recommended:
$>Add-AppxPackageC:\Downloads\python-manager-25.0.msix...$>Get-AppxPackagePythonSoftwareFoundation.PythonManager|Remove-AppxPackage
The latest release can be downloaded and installed by Windows by passing theAppInstaller file to the Add-AppxPackage command. This installs using the MSIXon python.org, and is only recommended for cases where installing via the Store(interactively or using WinGet) is not possible.
$>Add-AppxPackage-AppInstallerFilehttps://www.python.org/ftp/python/pymanager/pymanager.appinstaller
Other tools and APIs may also be used to provision an MSIX package for all userson a machine, but Python does not consider this a supported scenario. We suggestlooking into the PowerShellAdd-AppxProvisionedPackage cmdlet, the nativeWindowsPackageManager class, or the documentation and support for yourdeployment tool.
Regardless of the install method, users will still need to install their owncopies of Python itself, as there is no way to trigger those installs withoutbeing a logged in user. When using the MSIX, the latest version of Python willbe available for all users to install without network access.
Note that the MSIX downloadable from the Store and from the Python website aresubtly different and cannot be installed at the same time. Wherever possible,we suggest using the above WinGet commands to download the package from theStore to reduce the risk of setting up conflicting installs. There are nolicensing restrictions on the Python install manager that would prevent usingthe Store package in this way.
4.1.11.Administrative Configuration¶
There are a number of options that may be useful for administrators to overrideconfiguration of the Python install manager. These can be used to provide localcaching, disable certain shortcut types, override bundled content. All of theabove configuration options may be set, as well as those below.
Configuration options may be overridden in the registry by setting values underHKEY_LOCAL_MACHINE\Software\Policies\Python\PyManager
, where thevalue name matches the configuration key and the value type isREG_SZ
. Notethat this key can itself be customized, but only by modifying the core configfile distributed with the Python install manager. We recommend, however, thatregistry values are used only to setbase_config
to a JSON file containingthe full set of overrides. Registry key overrides will replace any otherconfigured setting, whilebase_config
allows users to further modifysettings they may need.
Note that most settings with environment variables support those variablesbecause their default setting specifies the variable. If you override them, theenvironment variable will no longer work, unless you override it with anotherone. For example, the default value ofconfirm
is literally%PYTHON_MANAGER_CONFIRM%
, which will resolve the variable at load time. Ifyou override the value toyes
, then the environment variable will no longerbe used. If you override the value to%CONFIRM%
, then that environmentvariable will be used instead.
Configuration settings that are paths are interpreted as relative to thedirectory containing the configuration file that specified them.
Config Key | Description |
---|---|
| The highest priority configuration file to read. Note thatonly the built-in configuration file and the registry can modify thissetting. |
| The second configuration file to read. |
| The third configuration file to read. |
| Registry location to check for overrides. Notethat only the built-in configuration file can modify this setting. |
| Read-only directory containing locally cached files. |
| Path or URL to an index to consult when themain index cannot be accessed. |
| Comma-separated list of shortcut kindsto allow (e.g. |
| Comma-separated list of shortcut kindsto exclude (e.g. |
| Registry location to read and write PEP 514 entries into.By default, |
| Start menu folder to write shortcuts into. By default, |
| Path to the active virtual environment. By default, thisis |
| True to suppress visible warningswhen a shebang launches an application other than a Python runtime. |
4.1.12.Installing Free-threaded Binaries¶
Added in version 3.13:(Experimental)
Note
Everything described in this section is considered experimental,and should be expected to change in future releases.
Pre-built distributions of the experimental free-threaded build are availableby installing tags with thet
suffix.
$> py install 3.14t$> py install 3.14t-arm64$> py install 3.14t-32
This will install and register as normal. If you have no other runtimesinstalled, thenpython
will launch this one. Otherwise, you will need to usepy-V:3.14t...
or, if you have added the global aliases directory to yourPATH
environment variable, thepython3.14t.exe
commands.
4.1.13.Troubleshooting¶
If your Python install manager does not seem to be working correctly, pleasework through these tests and fixes to see if it helps. If not, please report anissue atour bug tracker,including any relevant log files (written to your%TEMP%
directory bydefault).
Symptom | Things to try |
---|---|
| |
Click Start, open “Manage app execution aliases”, and check that thealiases for “Python (default)” are enabled. If they already are, trydisabling and re-enabling to refresh the command. The “Python (defaultwindowed)” and “Python install manager” commands may also need refreshing. | |
Check that the | |
| |
Click Start, open “Manage app execution aliases”, and check that thealiases for “Python install manager” are enabled. If they already are, trydisabling and re-enabling to refresh the command. The “Python (defaultwindowed)” and “Python install manager” commands may also need refreshing. | |
| This usually means you have the legacy launcher installed and ithas priority over the Python install manager. To remove, click Start, open“Installed apps”, search for “Python launcher” and uninstall it. |
| Click Start, open“Installed apps”, look for any existing Python runtimes, and either removethem or Modify and disable the |
Click Start, open “Manage app execution aliases”, and check that your | |
| Check your |
Installs that are managed by the Python install manager will be chosenahead of unmanaged installs. Use | |
Prerelease and experimental installs that are not managed by the Pythoninstall manager may be chosen ahead of stable releases. Configure yourdefault tag or uninstall the prerelease runtime and reinstall using | |
| Click Start, open “Manage app execution aliases”, and check thatyour |
| Have you activated a virtual environment? Run the |
The package may be available but missing the generated executable.We recommend using the |
4.2.The embeddable package¶
Added in version 3.5.
The embedded distribution is a ZIP file containing a minimal Python environment.It is intended for acting as part of another application, rather than beingdirectly accessed by end-users.
To install an embedded distribution, we recommend usingpyinstall
with the--target
option:
$> py install 3.14-embed --target=runtime
When extracted, the embedded distribution is (almost) fully isolated from theuser’s system, including environment variables, system registry settings, andinstalled packages. The standard library is included as pre-compiled andoptimized.pyc
files in a ZIP, andpython3.dll
,python313.dll
,python.exe
andpythonw.exe
are all provided. Tcl/tk (including alldependents, such as Idle), pip and the Python documentation are not included.
A default._pth
file is included, which further restricts the default searchpaths (as described below inFinding modules). This file isintended for embedders to modify as necessary.
Third-party packages should be installed by the application installer alongsidethe embedded distribution. Using pip to manage dependencies as for a regularPython installation is not supported with this distribution, though with somecare it may be possible to include and use pip for automatic updates. Ingeneral, third-party packages should be treated as part of the application(“vendoring”) so that the developer can ensure compatibility with newerversions before providing updates to users.
The two recommended use cases for this distribution are described below.
4.2.1.Python Application¶
An application written in Python does not necessarily require users to be awareof that fact. The embedded distribution may be used in this case to include aprivate version of Python in an install package. Depending on how transparent itshould be (or conversely, how professional it should appear), there are twooptions.
Using a specialized executable as a launcher requires some coding, but providesthe most transparent experience for users. With a customized launcher, there areno obvious indications that the program is running on Python: icons can becustomized, company and version information can be specified, and fileassociations behave properly. In most cases, a custom launcher should simply beable to callPy_Main
with a hard-coded command line.
The simpler approach is to provide a batch file or generated shortcut thatdirectly calls thepython.exe
orpythonw.exe
with the requiredcommand-line arguments. In this case, the application will appear to be Pythonand not its actual name, and users may have trouble distinguishing it from otherrunning Python processes or file associations.
With the latter approach, packages should be installed as directories alongsidethe Python executable to ensure they are available on the path. With thespecialized launcher, packages can be located in other locations as there is anopportunity to specify the search path before launching the application.
4.2.2.Embedding Python¶
Applications written in native code often require some form of scriptinglanguage, and the embedded Python distribution can be used for this purpose. Ingeneral, the majority of the application is in native code, and some part willeither invokepython.exe
or directly usepython3.dll
. For either case,extracting the embedded distribution to a subdirectory of the applicationinstallation is sufficient to provide a loadable Python interpreter.
As with the application use, packages can be installed to any location as thereis an opportunity to specify search paths before initializing the interpreter.Otherwise, there is no fundamental differences between using the embeddeddistribution and a regular installation.
4.3.The nuget.org packages¶
Added in version 3.5.2.
The nuget.org package is a reduced size Python environment intended for use oncontinuous integration and build systems that do not have a system-wideinstall of Python. While nuget is “the package manager for .NET”, it also worksperfectly fine for packages containing build-time tools.
Visitnuget.org for the most up-to-date informationon using nuget. What follows is a summary that is sufficient for Pythondevelopers.
Thenuget.exe
command line tool may be downloaded directly fromhttps://aka.ms/nugetclidl
, for example, using curl or PowerShell. With thetool, the latest version of Python for 64-bit or 32-bit machines is installedusing:
nuget.exe install python -ExcludeVersion -OutputDirectory .nuget.exe install pythonx86 -ExcludeVersion -OutputDirectory .
To select a particular version, add a-Version3.x.y
. The output directorymay be changed from.
, and the package will be installed into asubdirectory. By default, the subdirectory is named the same as the package,and without the-ExcludeVersion
option this name will include the specificversion installed. Inside the subdirectory is atools
directory thatcontains the Python installation:
# Without -ExcludeVersion> .\python.3.5.2\tools\python.exe -VPython 3.5.2# With -ExcludeVersion> .\python\tools\python.exe -VPython 3.5.2
In general, nuget packages are not upgradeable, and newer versions should beinstalled side-by-side and referenced using the full path. Alternatively,delete the package directory manually and install it again. Many CI systemswill do this automatically if they do not preserve files between builds.
Alongside thetools
directory is abuild\native
directory. Thiscontains a MSBuild properties filepython.props
that can be used in aC++ project to reference the Python install. Including the settings willautomatically use the headers and import libraries in your build.
The package information pages on nuget.org arewww.nuget.org/packages/pythonfor the 64-bit version,www.nuget.org/packages/pythonx86 for the 32-bit version, andwww.nuget.org/packages/pythonarm64 for the ARM64 version
4.3.1.Free-threaded packages¶
Added in version 3.13:(Experimental)
Note
Everything described in this section is considered experimental,and should be expected to change in future releases.
Packages containing free-threaded binaries are namedpython-freethreadedfor the 64-bit version,pythonx86-freethreaded for the 32-bitversion, andpythonarm64-freethreaded for the ARM64version. These packages contain both thepython3.13t.exe
andpython.exe
entry points, both of which run free threaded.
4.4.Alternative bundles¶
Besides the standard CPython distribution, there are modified packages includingadditional functionality. The following is a list of popular versions and theirkey features:
- ActivePython
Installer with multi-platform compatibility, documentation, PyWin32
- Anaconda
Popular scientific modules (such as numpy, scipy and pandas) and the
conda
package manager.- Enthought Deployment Manager
“The Next Generation Python Environment and Package Manager”.
Previously Enthought provided Canopy, but itreached end of life in 2016.
- WinPython
Windows-specific distribution with prebuilt scientific packages andtools for building packages.
Note that these packages may not include the latest versions of Python orother libraries, and are not maintained or supported by the core Python team.
4.5.Supported Windows versions¶
As specified inPEP 11, a Python release only supports a Windows platformwhile Microsoft considers the platform under extended support. This means thatPython 3.15 supports Windows 10 and newer. If you require Windows 7support, please install Python 3.8. If you require Windows 8.1 support,please install Python 3.12.
4.6.Removing the MAX_PATH Limitation¶
Windows historically has limited path lengths to 260 characters. This meant thatpaths longer than this would not resolve and errors would result.
In the latest versions of Windows, this limitation can be expanded to over32,000 characters. Your administrator will need to activate the “Enable Win32long paths” group policy, or setLongPathsEnabled
to1
in the registrykeyHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
.
This allows theopen()
function, theos
module and most otherpath functionality to accept and return paths longer than 260 characters.
After changing the above option and rebooting, no further configuration isrequired.
4.7.UTF-8 mode¶
Added in version 3.7.
Windows still uses legacy encodings for the system encoding (the ANSI CodePage). Python uses it for the default encoding of text files (e.g.locale.getencoding()
).
This may cause issues because UTF-8 is widely used on the internetand most Unix systems, including WSL (Windows Subsystem for Linux).
You can use thePython UTF-8 Mode to change the default textencoding to UTF-8. You can enable thePython UTF-8 Mode viathe-Xutf8
command line option, or thePYTHONUTF8=1
environmentvariable. SeePYTHONUTF8
for enabling UTF-8 mode, andPython Install Manager for how to modify environment variables.
When thePython UTF-8 Mode is enabled, you can still use thesystem encoding (the ANSI Code Page) via the “mbcs” codec.
Note that addingPYTHONUTF8=1
to the default environment variableswill affect all Python 3.7+ applications on your system.If you have any Python 3.7+ applications which rely on the legacysystem encoding, it is recommended to set the environment variabletemporarily or use the-Xutf8
command line option.
Note
Even when UTF-8 mode is disabled, Python uses UTF-8 by defaulton Windows for:
Console I/O including standard I/O (seePEP 528 for details).
Thefilesystem encoding(seePEP 529 for details).
4.8.Finding modules¶
These notes supplement the description atThe initialization of the sys.path module search path withdetailed Windows notes.
When no._pth
file is found, this is howsys.path
is populated onWindows:
An empty entry is added at the start, which corresponds to the currentdirectory.
If the environment variable
PYTHONPATH
exists, as described inEnvironment variables, its entries are added next. Note that on Windows,paths in this variable must be separated by semicolons, to distinguish themfrom the colon used in drive identifiers (C:\
etc.).Additional “application paths” can be added in the registry as subkeys of
\SOFTWARE\Python\PythonCore{version}\PythonPath
under both theHKEY_CURRENT_USER
andHKEY_LOCAL_MACHINE
hives. Subkeys which havesemicolon-delimited path strings as their default value will cause each pathto be added tosys.path
. (Note that all known installers only useHKLM, so HKCU is typically empty.)If the environment variable
PYTHONHOME
is set, it is assumed as“Python Home”. Otherwise, the path of the main Python executable is used tolocate a “landmark file” (eitherLib\os.py
orpythonXY.zip
) to deducethe “Python Home”. If a Python home is found, the relevant sub-directoriesadded tosys.path
(Lib
,plat-win
, etc) are based on thatfolder. Otherwise, the core Python path is constructed from the PythonPathstored in the registry.If the Python Home cannot be located, no
PYTHONPATH
is specified inthe environment, and no registry entries can be found, a default path withrelative entries is used (e.g..\Lib;.\plat-win
, etc).
If apyvenv.cfg
file is found alongside the main executable or in thedirectory one level above the executable, the following variations apply:
If
home
is an absolute path andPYTHONHOME
is not set, thispath is used instead of the path to the main executable when deducing thehome location.
The end result of all this is:
When running
python.exe
, or any other .exe in the main Pythondirectory (either an installed version, or directly from the PCbuilddirectory), the core path is deduced, and the core paths in the registry areignored. Other “application paths” in the registry are always read.When Python is hosted in another .exe (different directory, embedded via COM,etc), the “Python Home” will not be deduced, so the core path from theregistry is used. Other “application paths” in the registry are always read.
If Python can’t find its home and there are no registry value (frozen .exe,some very strange installation setup) you get a path with some default, butrelative, paths.
For those who want to bundle Python into their application or distribution, thefollowing advice will prevent conflicts with other installations:
Include a
._pth
file alongside your executable containing thedirectories to include. This will ignore paths listed in the registry andenvironment variables, and also ignoresite
unlessimportsite
islisted.If you are loading
python3.dll
orpython37.dll
in your ownexecutable, explicitly setPyConfig.module_search_paths
beforePy_InitializeFromConfig()
.Clear and/or overwrite
PYTHONPATH
and setPYTHONHOME
before launchingpython.exe
from your application.If you cannot use the previous suggestions (for example, you are adistribution that allows people to run
python.exe
directly), ensurethat the landmark file (Lib\os.py
) exists in your install directory.(Note that it will not be detected inside a ZIP file, but a correctly namedZIP file will be detected instead.)
These will ensure that the files in a system-wide installation will not takeprecedence over the copy of the standard library bundled with your application.Otherwise, your users may experience problems using your application. Note thatthe first suggestion is the best, as the others may still be susceptible tonon-standard paths in the registry and user site-packages.
Changed in version 3.6:Add._pth
file support and removesapplocal
option frompyvenv.cfg
.
Changed in version 3.6:AddpythonXX.zip
as a potential landmark when directly adjacentto the executable.
Deprecated since version 3.6:Modules specified in the registry underModules
(notPythonPath
)may be imported byimportlib.machinery.WindowsRegistryFinder
.This finder is enabled on Windows in 3.6.0 and earlier, but may need tobe explicitly added tosys.meta_path
in the future.
4.9.Additional modules¶
Even though Python aims to be portable among all platforms, there are featuresthat are unique to Windows. A couple of modules, both in the standard libraryand external, and snippets exist to use these features.
The Windows-specific standard modules are documented inMS Windows Specific Services.
4.9.1.PyWin32¶
ThePyWin32 module by Mark Hammondis a collection of modules for advanced Windows-specific support. This includesutilities for:
Win32 API calls
Registry
Event log
Microsoft Foundation Classes(MFC) user interfaces
PythonWin is a sample MFC applicationshipped with PyWin32. It is an embeddable IDE with a built-in debugger.
See also
- Win32 How Do I…?
by Tim Golden
- Python and COM
by David and Paul Boddie
4.9.2.cx_Freeze¶
cx_Freezewraps Python scripts into executable Windows programs(*.exe
files). When you have done this, you can distribute yourapplication without requiring your users to install Python.
4.10.Compiling Python on Windows¶
If you want to compile CPython yourself, first thing you should do is get thesource. You can download either thelatest release’s source or just grab a freshcheckout.
The source tree contains a build solution and project files for MicrosoftVisual Studio, which is the compiler used to build the official Pythonreleases. These files are in thePCbuild
directory.
CheckPCbuild/readme.txt
for general information on the build process.
For extension modules, consultBuilding C and C++ Extensions on Windows.
4.11.The full installer (deprecated)¶
Deprecated since version 3.14:This installer is deprecated since 3.14 and will not be produced for Python3.16 or later. SeePython Install Manager for the modern installer.
4.11.1.Installation steps¶
Four Python 3.15 installers are available for download - two each for the32-bit and 64-bit versions of the interpreter. Theweb installer is a smallinitial download, and it will automatically download the required components asnecessary. Theoffline installer includes the components necessary for adefault installation and only requires an internet connection for optionalfeatures. SeeInstalling Without Downloading for other ways to avoid downloadingduring installation.
After starting the installer, one of two options may be selected:

If you select “Install Now”:
You willnot need to be an administrator (unless a system update for theC Runtime Library is required or you install thePython Install Manager for allusers)
Python will be installed into your user directory
ThePython Install Manager will be installed according to the option at the bottomof the first page
The standard library, test suite, launcher and pip will be installed
If selected, the install directory will be added to your
PATH
Shortcuts will only be visible for the current user
Selecting “Customize installation” will allow you to select the features toinstall, the installation location and other options or post-install actions.To install debugging symbols or binaries, you will need to use this option.
To perform an all-users installation, you should select “Customizeinstallation”. In this case:
You may be required to provide administrative credentials or approval
Python will be installed into the Program Files directory
ThePython Install Manager will be installed into the Windows directory
Optional features may be selected during installation
The standard library can be pre-compiled to bytecode
If selected, the install directory will be added to the system
PATH
Shortcuts are available for all users
4.11.2.Removing the MAX_PATH Limitation¶
Windows historically has limited path lengths to 260 characters. This meant thatpaths longer than this would not resolve and errors would result.
In the latest versions of Windows, this limitation can be expanded toapproximately 32,000 characters. Your administrator will need to activate the“Enable Win32 long paths” group policy, or setLongPathsEnabled
to1
in the registry keyHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
.
This allows theopen()
function, theos
module and most otherpath functionality to accept and return paths longer than 260 characters.
After changing the above option, no further configuration is required.
Changed in version 3.6:Support for long paths was enabled in Python.
4.11.3.Installing Without UI¶
All of the options available in the installer UI can also be specified from thecommand line, allowing scripted installers to replicate an installation on manymachines without user interaction. These options may also be set withoutsuppressing the UI in order to change some of the defaults.
The following options (found by executing the installer with/?
) can bepassed into the installer:
Name | Description |
---|---|
/passive | to display progress without requiring user interaction |
/quiet | to install/uninstall without displaying any UI |
/simple | to prevent user customization |
/uninstall | to remove Python (without confirmation) |
/layout [directory] | to pre-download all components |
/log [filename] | to specify log files location |
All other options are passed asname=value
, where the value is usually0
to disable a feature,1
to enable a feature, or a path. The full listof available options is shown below.
Name | Description | Default |
---|---|---|
InstallAllUsers | Perform a system-wide installation. | 0 |
TargetDir | The installation directory | Selected based onInstallAllUsers |
DefaultAllUsersTargetDir | The default installation directoryfor all-user installs |
|
DefaultJustForMeTargetDir | The default install directory forjust-for-me installs |
|
DefaultCustomTargetDir | The default custom install directorydisplayed in the UI | (empty) |
AssociateFiles | Create file associations if thelauncher is also installed. | 1 |
CompileAll | Compile all | 0 |
PrependPath | Prepend install and Scriptsdirectories to | 0 |
AppendPath | Append install and Scriptsdirectories to | 0 |
Shortcuts | Create shortcuts for the interpreter,documentation and IDLE if installed. | 1 |
Include_doc | Install Python manual | 1 |
Include_debug | Install debug binaries | 0 |
Include_dev | Install developer headers andlibraries. Omitting this may lead toan unusable installation. | 1 |
Include_exe | Install | 1 |
Include_launcher | InstallPython Install Manager. | 1 |
InstallLauncherAllUsers | Installs the launcher for allusers. Also requires | 1 |
Include_lib | Install standard library andextension modules. Omitting this maylead to an unusable installation. | 1 |
Include_pip | Install bundled pip and setuptools | 1 |
Include_symbols | Install debugging symbols ( | 0 |
Include_tcltk | Install Tcl/Tk support and IDLE | 1 |
Include_test | Install standard library test suite | 1 |
Include_tools | Install utility scripts | 1 |
LauncherOnly | Only installs the launcher. Thiswill override most other options. | 0 |
SimpleInstall | Disable most install UI | 0 |
SimpleInstallDescription | A custom message to display when thesimplified install UI is used. | (empty) |
For example, to silently install a default, system-wide Python installation,you could use the following command (from an elevated command prompt):
python-3.9.0.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
To allow users to easily install a personal copy of Python without the testsuite, you could provide a shortcut with the following command. This willdisplay a simplified initial page and disallow customization:
python-3.9.0.exe InstallAllUsers=0 Include_launcher=0 Include_test=0 SimpleInstall=1 SimpleInstallDescription="Just for me, no test suite."
(Note that omitting the launcher also omits file associations, and is onlyrecommended for per-user installs when there is also a system-wide installationthat included the launcher.)
The options listed above can also be provided in a file namedunattend.xml
alongside the executable. This file specifies a list of options and values.When a value is provided as an attribute, it will be converted to a number ifpossible. Values provided as element text are always left as strings. Thisexample file sets the same options as the previous example:
<Options><OptionName="InstallAllUsers"Value="no"/><OptionName="Include_launcher"Value="0"/><OptionName="Include_test"Value="no"/><OptionName="SimpleInstall"Value="yes"/><OptionName="SimpleInstallDescription">Justforme,notestsuite</Option></Options>
4.11.4.Installing Without Downloading¶
As some features of Python are not included in the initial installer download,selecting those features may require an internet connection. To avoid thisneed, all possible components may be downloaded on-demand to create a completelayout that will no longer require an internet connection regardless of theselected features. Note that this download may be bigger than required, butwhere a large number of installations are going to be performed it is veryuseful to have a locally cached copy.
Execute the following command from Command Prompt to download all possiblerequired files. Remember to substitutepython-3.9.0.exe
for the actualname of your installer, and to create layouts in their own directories toavoid collisions between files with the same name.
python-3.9.0.exe /layout [optional target directory]
You may also specify the/quiet
option to hide the progress display.
4.11.5.Modifying an install¶
Once Python has been installed, you can add or remove features through thePrograms and Features tool that is part of Windows. Select the Python entry andchoose “Uninstall/Change” to open the installer in maintenance mode.
“Modify” allows you to add or remove features by modifying the checkboxes -unchanged checkboxes will not install or remove anything. Some options cannot bechanged in this mode, such as the install directory; to modify these, you willneed to remove and then reinstall Python completely.
“Repair” will verify all the files that should be installed using the currentsettings and replace any that have been removed or modified.
“Uninstall” will remove Python entirely, with the exception of thePython Install Manager, which has its own entry in Programs and Features.
4.11.6.Installing Free-threaded Binaries¶
Added in version 3.13:(Experimental)
Note
Everything described in this section is considered experimental,and should be expected to change in future releases.
To install pre-built binaries with free-threading enabled (seePEP 703), youshould select “Customize installation”. The second page of options includes the“Download free-threaded binaries” checkbox.

Selecting this option will download and install additional binaries to the samelocation as the main Python install. The main executable is calledpython3.13t.exe
, and other binaries either receive at
suffix or a fullABI suffix. Python source files and bundled third-party dependencies are sharedwith the main install.
The free-threaded version is registered as a regular Python install with thetag3.13t
(with a-32
or-arm64
suffix as normal for thoseplatforms). This allows tools to discover it, and for thePython Install Manager tosupportpy.exe-3.13t
. Note that the launcher will interpretpy.exe-3
(or apython3
shebang) as “the latest 3.x install”, which will prefer thefree-threaded binaries over the regular ones, whilepy.exe-3.13
will not.If you use the short style of option, you may prefer to not install thefree-threaded binaries at this time.
To specify the install option at the command line, useInclude_freethreaded=1
. SeeInstalling Without Downloading for instructions onpre-emptively downloading the additional binaries for offline install. Theoptions to include debug symbols and binaries also apply to the free-threadedbuilds.
Free-threaded binaries are also availableon nuget.org.
4.12.Python Launcher for Windows (Deprecated)¶
Deprecated since version 3.14:The launcher and this documentation have been superseded by the PythonInstall Manager described above. This is preserved temporarily for historicalinterest.
Added in version 3.3.
The Python launcher for Windows is a utility which aids in locating andexecuting of different Python versions. It allows scripts (or thecommand-line) to indicate a preference for a specific Python version, andwill locate and execute that version.
Unlike thePATH
variable, the launcher will correctly select the mostappropriate version of Python. It will prefer per-user installations oversystem-wide ones, and orders by language version rather than using the mostrecently installed version.
The launcher was originally specified inPEP 397.
4.12.1.Getting started¶
4.12.1.1.From the command-line¶
Changed in version 3.6.
System-wide installations of Python 3.3 and later will put the launcher on yourPATH
. The launcher is compatible with all available versions ofPython, so it does not matter which version is installed. To check that thelauncher is available, execute the following command in Command Prompt:
py
You should find that the latest version of Python you have installed isstarted - it can be exited as normal, and any additional command-linearguments specified will be sent directly to Python.
If you have multiple versions of Python installed (e.g., 3.7 and 3.15) youwill have noticed that Python 3.15 was started - to launch Python 3.7, trythe command:
py -3.7
If you want the latest version of Python 2 you have installed, try thecommand:
py -2
If you see the following error, you do not have the launcher installed:
'py' is not recognized as an internal or external command,operable program or batch file.
The command:
py --list
displays the currently installed version(s) of Python.
The-x.y
argument is the short form of the-V:Company/Tag
argument,which allows selecting a specific Python runtime, including those that may havecome from somewhere other than python.org. Any runtime registered by followingPEP 514 will be discoverable. The--list
command lists all availableruntimes using the-V:
format.
When using the-V:
argument, specifying the Company will limit selection toruntimes from that provider, while specifying only the Tag will select from allproviders. Note that omitting the slash implies a tag:
# Select any '3.*' tagged runtimepy -V:3# Select any 'PythonCore' released runtimepy -V:PythonCore/# Select PythonCore's latest Python 3 runtimepy -V:PythonCore/3
The short form of the argument (-3
) only ever selects from core Pythonreleases, and not other distributions. However, the longer form (-V:3
) willselect from any.
The Company is matched on the full string, case-insensitive. The Tag is matchedon either the full string, or a prefix, provided the next character is a dot or ahyphen. This allows-V:3.1
to match3.1-32
, but not3.10
. Tags aresorted using numerical ordering (3.10
is newer than3.1
), but arecompared using text (-V:3.01
does not match3.1
).
4.12.1.2.Virtual environments¶
Added in version 3.5.
If the launcher is run with no explicit Python version specification, and avirtual environment (created with the standard libraryvenv
module orthe externalvirtualenv
tool) active, the launcher will run the virtualenvironment’s interpreter rather than the global one. To run the globalinterpreter, either deactivate the virtual environment, or explicitly specifythe global Python version.
4.12.1.3.From a script¶
Let’s create a test Python script - create a file calledhello.py
with thefollowing contents
#! pythonimportsyssys.stdout.write("hello from Python%s\n"%(sys.version,))
From the directory in which hello.py lives, execute the command:
py hello.py
You should notice the version number of your latest Python 2.x installationis printed. Now try changing the first line to be:
#! python3
Re-executing the command should now print the latest Python 3.x information.As with the above command-line examples, you can specify a more explicitversion qualifier. Assuming you have Python 3.7 installed, try changingthe first line to#!python3.7
and you should find the 3.7version information printed.
Note that unlike interactive use, a bare “python” will use the latestversion of Python 2.x that you have installed. This is for backwardcompatibility and for compatibility with Unix, where the commandpython
typically refers to Python 2.
4.12.1.4.From file associations¶
The launcher should have been associated with Python files (i.e..py
,.pyw
,.pyc
files) when it was installed. This means thatwhen you double-click on one of these files from Windows explorer the launcherwill be used, and therefore you can use the same facilities described above tohave the script specify the version which should be used.
The key benefit of this is that a single launcher can support multiple Pythonversions at the same time depending on the contents of the first line.
4.12.2.Shebang Lines¶
If the first line of a script file starts with#!
, it is known as a“shebang” line. Linux and other Unix like operating systems have nativesupport for such lines and they are commonly used on such systems to indicatehow a script should be executed. This launcher allows the same facilities tobe used with Python scripts on Windows and the examples above demonstrate theiruse.
To allow shebang lines in Python scripts to be portable between Unix andWindows, this launcher supports a number of ‘virtual’ commands to specifywhich interpreter to use. The supported virtual commands are:
/usr/bin/env
/usr/bin/python
/usr/local/bin/python
python
For example, if the first line of your script starts with
#! /usr/bin/python
The default Python or an active virtual environment will be located and used.As many Python scripts written to work on Unix will already have this line,you should find these scripts can be used by the launcher without modification.If you are writing a new script on Windows which you hope will be useful onUnix, you should use one of the shebang lines starting with/usr
.
Any of the above virtual commands can be suffixed with an explicit version(either just the major version, or the major and minor version).Furthermore the 32-bit version can be requested by adding “-32” after theminor version. I.e./usr/bin/python3.7-32
will request usage of the32-bit Python 3.7. If a virtual environment is active, the version will beignored and the environment will be used.
Added in version 3.7:Beginning with python launcher 3.7 it is possible to request 64-bit versionby the “-64” suffix. Furthermore it is possible to specify a major andarchitecture without minor (i.e./usr/bin/python3-64
).
Changed in version 3.11:The “-64” suffix is deprecated, and now implies “any architecture that isnot provably i386/32-bit”. To request a specific environment, use the new-V:TAG
argument with the complete tag.
Changed in version 3.13:Virtual commands referencingpython
now prefer an active virtualenvironment rather than searchingPATH
. This handles cases wherethe shebang specifies/usr/bin/envpython3
butpython3.exe
isnot present in the active environment.
The/usr/bin/env
form of shebang line has one further special property.Before looking for installed Python interpreters, this form will search theexecutablePATH
for a Python executable matching the name providedas the first argument. This corresponds to the behaviour of the Unixenv
program, which performs aPATH
search.If an executable matching the first argument after theenv
command cannotbe found, but the argument starts withpython
, it will be handled asdescribed for the other virtual commands.The environment variablePYLAUNCHER_NO_SEARCH_PATH
may be set(to any value) to skip this search ofPATH
.
Shebang lines that do not match any of these patterns are looked up in the[commands]
section of the launcher’s.INI file.This may be used to handle certain commands in a way that makes sense for yoursystem. The name of the command must be a single argument (no spaces in theshebang executable), and the value substituted is the full path to theexecutable (additional arguments specified in the .INI will be quoted as partof the filename).
[commands]/bin/xpython=C:\Program Files\XPython\python.exe
Any commands not found in the .INI file are treated asWindows executablepaths that are absolute or relative to the directory containing the script file.This is a convenience for Windows-only scripts, such as those generated by aninstaller, since the behavior is not compatible with Unix-style shells.These paths may be quoted, and may include multiple arguments, after which thepath to the script and any additional arguments will be appended.
4.12.3.Arguments in shebang lines¶
The shebang lines can also specify additional options to be passed to thePython interpreter. For example, if you have a shebang line:
#! /usr/bin/python -v
Then Python will be started with the-v
option
4.12.4.Customization¶
4.12.4.1.Customization via INI files¶
Two .ini files will be searched by the launcher -py.ini
in the currentuser’s application data directory (%LOCALAPPDATA%
or$env:LocalAppData
)andpy.ini
in the same directory as the launcher. The same .ini files areused for both the ‘console’ version of the launcher (i.e. py.exe) and for the‘windows’ version (i.e. pyw.exe).
Customization specified in the “application directory” will have precedence overthe one next to the executable, so a user, who may not have write access to the.ini file next to the launcher, can override commands in that global .ini file.
4.12.4.2.Customizing default Python versions¶
In some cases, a version qualifier can be included in a command to dictatewhich version of Python will be used by the command. A version qualifierstarts with a major version number and can optionally be followed by a period(‘.’) and a minor version specifier. Furthermore it is possible to specifyif a 32 or 64 bit implementation shall be requested by adding “-32” or “-64”.
For example, a shebang line of#!python
has no version qualifier, while#!python3
has a version qualifier which specifies only a major version.
If no version qualifiers are found in a command, the environmentvariablePY_PYTHON
can be set to specify the default versionqualifier. If it is not set, the default is “3”. The variable canspecify any value that may be passed on the command line, such as “3”,“3.7”, “3.7-32” or “3.7-64”. (Note that the “-64” option is onlyavailable with the launcher included with Python 3.7 or newer.)
If no minor version qualifiers are found, the environment variablePY_PYTHON{major}
(where{major}
is the current major version qualifieras determined above) can be set to specify the full version. If no such optionis found, the launcher will enumerate the installed Python versions and usethe latest minor release found for the major version, which is likely,although not guaranteed, to be the most recently installed version in thatfamily.
On 64-bit Windows with both 32-bit and 64-bit implementations of the same(major.minor) Python version installed, the 64-bit version will always bepreferred. This will be true for both 32-bit and 64-bit implementations of thelauncher - a 32-bit launcher will prefer to execute a 64-bit Python installationof the specified version if available. This is so the behavior of the launchercan be predicted knowing only what versions are installed on the PC andwithout regard to the order in which they were installed (i.e., without knowingwhether a 32 or 64-bit version of Python and corresponding launcher wasinstalled last). As noted above, an optional “-32” or “-64” suffix can beused on a version specifier to change this behaviour.
Examples:
If no relevant options are set, the commands
python
andpython2
will use the latest Python 2.x version installed andthe commandpython3
will use the latest Python 3.x installed.The command
python3.7
will not consult anyoptions at all as the versions are fully specified.If
PY_PYTHON=3
, the commandspython
andpython3
will both usethe latest installed Python 3 version.If
PY_PYTHON=3.7-32
, the commandpython
will use the 32-bitimplementation of 3.7 whereas the commandpython3
will use the latestinstalled Python (PY_PYTHON was not considered at all as a majorversion was specified.)If
PY_PYTHON=3
andPY_PYTHON3=3.7
, the commandspython
andpython3
will both use specifically 3.7
In addition to environment variables, the same settings can be configuredin the .INI file used by the launcher. The section in the INI file iscalled[defaults]
and the key name will be the same as theenvironment variables without the leadingPY_
prefix (and note thatthe key names in the INI file are case insensitive.) The contents ofan environment variable will override things specified in the INI file.
For example:
Setting
PY_PYTHON=3.7
is equivalent to the INI file containing:
[defaults]python=3.7
Setting
PY_PYTHON=3
andPY_PYTHON3=3.7
is equivalent to the INI filecontaining:
[defaults]python=3python3=3.7
4.12.5.Diagnostics¶
If an environment variablePYLAUNCHER_DEBUG
is set (to any value), thelauncher will print diagnostic information to stderr (i.e. to the console).While this information manages to be simultaneously verboseand terse, itshould allow you to see what versions of Python were located, why aparticular version was chosen and the exact command-line used to execute thetarget Python. It is primarily intended for testing and debugging.
4.12.6.Dry Run¶
If an environment variablePYLAUNCHER_DRYRUN
is set (to any value),the launcher will output the command it would have run, but will not actuallylaunch Python. This may be useful for tools that want to use the launcher todetect and then launch Python directly. Note that the command written tostandard output is always encoded using UTF-8, and may not render correctly inthe console.
4.12.7.Install on demand¶
If an environment variablePYLAUNCHER_ALLOW_INSTALL
is set (to anyvalue), and the requested Python version is not installed but is available onthe Microsoft Store, the launcher will attempt to install it. This may requireuser interaction to complete, and you may need to run the command again.
An additionalPYLAUNCHER_ALWAYS_INSTALL
variable causes the launcherto always try to install Python, even if it is detected. This is mainly intendedfor testing (and should be used withPYLAUNCHER_DRYRUN
).
4.12.8.Return codes¶
The following exit codes may be returned by the Python launcher. Unfortunately,there is no way to distinguish these from the exit code of Python itself.
The names of codes are as used in the sources, and are only for reference. Thereis no way to access or resolve them apart from reading this page. Entries arelisted in alphabetical order of names.
Name | Value | Description |
---|---|---|
RC_BAD_VENV_CFG | 107 | A |
RC_CREATE_PROCESS | 101 | Failed to launch Python. |
RC_INSTALLING | 111 | An install was started, but the command willneed to be re-run after it completes. |
RC_INTERNAL_ERROR | 109 | Unexpected error. Please report a bug. |
RC_NO_COMMANDLINE | 108 | Unable to obtain command line from theoperating system. |
RC_NO_PYTHON | 103 | Unable to locate the requested version. |
RC_NO_VENV_CFG | 106 | A |