Python Launcher for Windows
The Python launcher for Windows is a utility which aids in the location and execution of different Python versions. It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version.
- Getting started
- From the command-line
- From a script
- From file associations
- Arguments in shebang lines
- Customization via INI files
- Customizing default Python versions
Getting started
From the command-line
You should ensure the launcher is on your PATH — depending on how it was installed it may already be there, but check just in case it is not.
From a command-prompt, execute the following command:
You should find that the latest version of Python 2.x you have installed is started — it can be exited as normal, and any additional command-line arguments specified will be sent directly to Python.
If you have multiple versions of Python 2.x installed (e.g., 2.6 and 2.7) you will have noticed that Python 2.7 was started — to launch Python 2.6, try the command:
py -2.6
If you have a Python 3.x installed, try the command:
py -3
You should find the latest version of Python 3.x starts.
From a script
Let’s create a test Python script — create a file called hello.py with the following contents
#! python import sys sys.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 installation is 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 explicit version qualifier. Assuming you have Python 2.6 installed, try changing the first line to #! python2.6 and you should find the 2.6 version information printed.
From file associations
The launcher should have been associated with Python files (i.e. .py, .pyw, .pyc, .pyo files) when it was installed. This means that when you double-click on one of these files from Windows explorer the launcher will be used, and therefore you can use the same facilities described above to have the script specify the version which should be used.
The key benefit of this is that a single launcher can support multiple Python versions at the same time depending on the contents of the first line.
If you type the following at a command line:
C:\>assoc .py
.py=Python.File
and if you type:
C:\>ftype Python.File
Python.File="C:\Windows\py.exe" "%1" %*
Similarly, .pyc and .pyo files should map to Python.CompiledFile, and .pyw should map to Python.NoConFile. While Python.CompiledFile maps to the same executable as Python.File, Python.NoConFile should map to pyw.exe rather than py.exe.
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 native support for such lines and are commonly used on such systems to indicate how a script should be executed. This launcher allows the same facilities to be using with Python scripts on Windows and the examples above demonstrate their use.
To allow shebang lines in Python scripts to be portable between Unix and Windows, this launcher supports a number of ‘virtual’ commands to specify which interpreter to use. The supported virtual commands are:
For example, if the first line of your script starts with
#! /usr/bin/python
The default Python 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 on Unix, you should use one of the shebang lines starting with /usr.
Arguments in shebang lines
The shebang lines can also specify additional options to be passed to the Python interpreter. For example, if you have a shebang line:
#! /usr/bin/python -v
Then Python will be started with the -v option
Customization
Customization via INI files
Two .ini files will be searched by the launcher — py.ini in the current user’s «application data» directory (i.e. the directory returned by calling the Windows function SHGetFolderPath with CSIDL_LOCAL_APPDATA) and py.ini in the same directory as the launcher. The same .ini files are used 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 over the 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)
Customizing default Python versions
In some cases, a version qualifier can be included in a command to dictate which version of Python will be used by the command. A version qualifier starts with a major version number and can optionally be followed by a period (‘.’) and a minor version specifier. If the minor qualifier is specified, it may optionally be followed by «-32» to indicate the 32-bit implementation of that version be used.
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 environment variable PY_PYTHON can be set to specify the default version qualifier — the default value is «2». Note this value could specify just a major version (e.g. «2») or a major.minor qualifier (e.g. «2.6»), or even major.minor-32.
If no minor version qualifiers are found, the environment variable PY_PYTHON (where is the current major version qualifier as determined above) can be set to specify the full version. If no such option is found, the launcher will enumerate the installed Python versions and use the latest minor release found for the major version, which is likely, although not guaranteed, to be the most recently installed version in that family.
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 be preferred. This will be true for both 32-bit and 64-bit implementations of the launcher — a 32-bit launcher will prefer to execute a 64-bit Python installation of the specified version if available. This is so the behavior of the launcher can be predicted knowing only what versions are installed on the PC and without regard to the order in which they were installed (i.e., without knowing whether a 32 or 64-bit version of Python and corresponding launcher was installed last). As noted above, an optional «-32» suffix can be used on a version specifier to change this behaviour.
- If no relevant options are set, the commands python and python2 will use the latest Python 2.x version installed and the command python3 will use the latest Python 3.x installed.
- The commands python3.1 and python2.7 will not consult any options at all as the versions are fully specified.
- If PY_PYTHON=3, the commands python and python3 will both use the latest installed Python 3 version.
- If PY_PYTHON=3.1-32 , the command python will use the 32-bit implementation of 3.1 whereas the command python3 will use the latest installed Python (PY_PYTHON was not considered at all as a major version was specified.)
- If PY_PYTHON=3 and PY_PYTHON3=3.1, the commands python and python3 will both use specifically 3.1
In addition to environment variables, the same settings can be configured in the .INI file used by the launcher. The section in the INI file is called [defaults] and the key name will be the same as the environment variables without the leading PY\_ prefix (and note that the key names in the INI file are case insensitive.) The contents of an environment variable will override things specified in the INI file.
- Setting PY_PYTHON=3.1 is equivalent to the INI file containing:
[defaults] python=3.1
- Setting PY_PYTHON=3 and PY_PYTHON3=3.1 is equivalent to the INI file containing:
[defaults] python=3 python3=3.1
Diagnostics
If an environment variable PYLAUNCH_DEBUG is set (to any value), the launcher will print diagnostic information to stderr (i.e. to the console). While this information manages to be simultaneously verbose and terse, it should allow you to see what versions of Python were located, why a particular version was chosen and the exact command-line used to execute the target Python.
PYTHON LAUNCHER ЧТО ЭТО ЗА ПРОГРАММА
Python Launcher — это программа, которая позволяет запускать скрипты Python на компьютере, который имеет несколько версий Python. Это означает, что каждый скрипт может быть запущен именно в той версии Python, для которой он был написан.
Python Launcher поставляется вместе с Python на ОС Windows и macOS. На ОС Linux по умолчанию может использоваться команда «python3» для запуска Python 3 или «python» для запуска Python 2. Однако Python Launcher может быть установлен и на Linux.
Python Launcher имеет несколько вариантов использования, таких как:
- Запуск скрипта с помощью двойного щелчка мыши на файле .py или .pyw. Python Launcher автоматически определит, какую версию Python использовать в зависимости от инструкций, указанных в файле.
- Запуск скрипта из командной строки с использованием ключей команды python.
- Установка ассоциаций для файлов .py или .pyw, чтобы Python был использован в качестве программы по умолчанию для запуска таких файлов в ОС Windows или macOS.
Вот пример кода на Python, который можно запустить с помощью Python Launcher:
print(«Привет, мир!»)
print(«Это скрипт на Python.»)Что такое Python/Питон?
Лучшая IDE для Python!
Изучение TKinter за 8 минут / Разработка GUI программы на Python
Что такое Python и почему вы захотите его изучить?
Как учить программирование быстрее с помощью Habitica?
Python с нуля. Урок 4 — Циклы (for, while)
Python на практике / Пишем 3 программы на Питон за 5 минут
BLGPG-20BB82A10369-23-09-17-18
Новые материалы:
- Дни недели пронумерованы следующим образом 0 воскресенье 1 понедельник python
- Поправка бонферрони python
- Как установить pyqt в pycharm
- Python шаблонизатор html
- Python повторить символ несколько раз
- Python aiogram отправить сообщение
- Дипломная работа python
- Часы на python
- Python django скачать
- Python xlsxwriter размер шрифта
- Поворот спрайта pygame
- Python сохранить датафрейм в csv
- Нет idle python
How to use Python’s py launcher for Windows
The Windows version of the Python interpreter can be run from the command line the same way it’s run in other operating systems, by typing python or python3 at the prompt. But there’s a feature unique to the Python edition of Windows that makes it easier to manage multiple installed versions of the Python interpreter—the py launcher.
When you type py at the command line, the launcher invokes the current default Python interpreter. py by itself will drop you into the Python REPL, which you can exit as you normally would by typing quit() or hitting Ctrl-Z.
To see which versions of Python are available to py , type py -0p . You’ll be presented with a list of all the known interpreters in the system, their version numbers, and their full paths. The interpreter marked with an asterisk is the default.
To invoke a specific edition of Python, type py followed by the switch in the left-hand column for the appropriate version. For instance, to launch the 64-bit edition of Python 3.9, you would type py -3.9-64 .
Note that if you provide only a version number, and not a bitness indicator, you’ll default to whichever version of Python is native to your machine’s processor type. On a 64-bit machine, that would be the 64-bit edition. So if you just typed py -3.9 , you’d get the 64-bit version of Python 3.9.
If you don’t specify a bitness, and only one bitness of a particular version is installed, that bitness will be loaded by default. In the above example, only the 64-bit version is installed, so if you type py -3.10 , you’ll get the 64-bit version of Python 3.10.
If you use just -2 or -3 as the version switch, Python will launch the most recent version of Python 2.x or Python 3.x, as indicated.
Upgrade py with new versions of Python
An important thing to keep in mind about the py launcher and upgrading Python versions: whenever a new version of Python is installed, the py launcher will be updated, as long as the Python version being installed is newer than the py launcher.
For instance, if you installed Python 3.8 and then Python 3.9, then 3.9 would upgrade py . But if you upgraded your Python 3.8 installation afterward, py wouldn’t be touched since the installer would detect that a newer version already existed.
This behavior can lead to some problems if you install a pre-release version of Python. As a general rule, when installing pre-release versions of Python in a system that has older production versions and an existing py launcher, don’t install the py launcher for the pre-release version. Use the existing py .
If you install a pre-release Python with py , then later attempt to upgrade one of the release versions along with the py launcher, the installer will see a «newer» version of the py launcher (the one installed with the pre-release version) and abort the install process for the older-version upgrade.
Run Python scripts with py
To run a Python script with the py launcher, simply substitute py and its command-line switches for python or python3 . For instance, here is the command typically used to upgrade pip by running it as a module:
python -m pip install -U pip
If we have the py launcher, we just type:
py -m pip install -U pip
To select a specific installation of Python, just pass the version as the first element in the argument list. Any arguments provided after the version are passed along as per usual.
py -3.9 -m pip install -U pip
Set the default Python for py
If you want to ensure that a given Python instance runs by default when you run py , you can do so in a few different ways. The methods are evaluated in this order:
- The active virtual environment. If you’re running py from a shell session where a Python virtual environment is active, the virtual environment’s edition of Python will be associated with py by default. You can always override this by providing a specific version switch.
- The shebang line in the script. Python scripts that begin with a line in the format of #!/path/to/python python3 or #!»C:\Python3.3\python.exe» will be run with the interpreter specified there.
- The PY_PYTHON2 or PY_PYTHON3 environment variables, when using the -2 or -3 switch.
- The PY_PYTHON environment variable. If you set a version number (e.g., 3.9-64 or just 3.9 ) with either PY_PYTHON or the previously mentioned environment variables, py will default to launching that version.
Next read this:
- Cloud computing is no longer a slam dunk
- What is generative AI? Artificial intelligence that creates
- Coding with AI: Tips and best practices from developers
- Python moves to remove the GIL and boost concurrency
- 7 reasons Java is still great
- The open source licensing war is over
- Python
- Windows
- Software Development
- Development Tools
- Small and Medium Business
Serdar Yegulalp is a senior writer at InfoWorld, focused on machine learning, containerization, devops, the Python ecosystem, and periodic reviews.
Copyright © 2023 IDG Communications, Inc.
При подготовке материала использовались источники:
https://oleksis.github.io/pylauncher/
https://pygame.ru/blog/python-launcher-chto-eto-za-programma.php
https://www.infoworld.com/article/3617292/how-to-use-pythons-py-launcher-for-windows.html