Windows/py: Difference between revisions
< Windows
(Created page with "Python Launcher <pre> Python Launcher for Windows Version 3.10.6150.1013 usage: py [launcher-args] [python-args] [script [script-args]] Launcher arguments: -2 : Launch the latest Python 2.x version -3 : Launch the latest Python 3.x version -X.Y : Launch the specified Python version The above all default to 64 bit if a matching 64 bit python is present. -X.Y-32: Launch the specified 32bit Python version -X-32 : Launch the latest 32bit Python X version...") |
No edit summary |
||
Line 1: | Line 1: | ||
Python Launcher | Python Launcher | ||
General usage: | |||
py | |||
py -2 | |||
py -3 | |||
<pre> | <pre> |
Revision as of 18:50, 19 June 2024
Python Launcher
General usage:
py py -2 py -3
Python Launcher for Windows Version 3.10.6150.1013 usage: py [launcher-args] [python-args] [script [script-args]] Launcher arguments: -2 : Launch the latest Python 2.x version -3 : Launch the latest Python 3.x version -X.Y : Launch the specified Python version The above all default to 64 bit if a matching 64 bit python is present. -X.Y-32: Launch the specified 32bit Python version -X-32 : Launch the latest 32bit Python X version -X.Y-64: Launch the specified 64bit Python version -X-64 : Launch the latest 64bit Python X version -0 --list : List the available pythons -0p --list-paths : List with paths If no script is specified the specified interpreter is opened. If an exact version is not given, using the latest version can be overridden by any of the following, (in priority order): An active virtual environment A shebang line in the script (if present) With -2 or -3 flag a matching PY_PYTHON2 or PY_PYTHON3 Environment variable A PY_PYTHON Environment variable From [defaults] in py.ini in your %LOCALAPPDATA%\py.ini From [defaults] in py.ini beside py.exe (use `where py` to locate) ...