How Should I Set Default Python Version In Windows?

我在 Windows7上安装了 Python 2.6Python 3.1,并设置了环境变量: path = d:\python2.6

当我在 cmd中运行 python时,它会显示 Python 版本2.6,这正是我想要的!
但是,当我在 bat 文件中编写脚本并运行它时,显示的 Python 版本是3.1。

import sys
print (sys.version)

这是怎么回事?

454823 次浏览

尝试修改 Windows 注册表中的路径(HKEY _ LOCAL _ MACHINE SYSTEM CurrentControlSet Control Session Manager Environment)。

注意: 不要破坏注册表:)

Python 安装程序安装 Python Launcher for Windows。这个程序(py.exe)与 Python 文件扩展名相关联,并寻找“ shebang”注释来指定要运行的 Python 版本。这使得许多版本的 Python 可以共存,并允许 Python 脚本根据需要显式指定使用哪个版本。如果未指定,则默认情况下将使用当前体系结构的最新 Python 版本(x86或 x64)。这个默认设置可以通过 py.ini文件或者 PY_PYTHON环境变量自定义。有关详细信息,请参阅 医生

新版本的 Python 更新了启动程序。最新版本有一个 py -0选项,用于列出已安装的 Python 并指示当前默认值。

以下是如何从控制台检查启动程序是否正确注册:

C:\>assoc .py
.py=Python.File


C:\>ftype Python.File
Python.File="C:\Windows\py.exe" "%1" %*

上面,.py文件与 Python.File类型相关联。Python.File的命令行是 Python Launcher,它安装在 Windows 目录中,因为它总是在 PATH 中。

为了使关联起作用,使用 script.py而不是“ python script.py”从命令行运行脚本,否则将运行 python而不是 py。如果事实上最好从 PATH 中删除 Python 目录,那么“ Python”将不会运行任何东西,并使用 py强制执行。

py.exe也可以通过开关运行,以强制使用 Python 版本:

py -3 script.py       # select latest Python 3.X version to be used.
py -3.6 script.py     # select version 3.6 specifically.
py -3.9-32 script.py  # select version 3.9 32-bit specifically.
py -0                 # list installed Python versions (latest PyLauncher).

此外,将 .py;.pyw;.pyc;.pyo添加到 PATHEXT环境变量,然后命令行就可以只是 script而没有扩展名。

  1. Edit registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\python.exe\default
  2. 设置默认程序将 .py文件打开为 python.exe

现在 Python 3.3已经发布,使用这里描述的 py.exe 实用程序是最简单的: Http://www.python.org/dev/peps/pep-0397/

It allows you to specify a Python version in your script file using a UNIX style directive. There are also command line and environment variable options for controlling which version of Python is run.

获得此实用程序的最简单方法是安装 Python 3.3或更高版本。

请点击这里查看原始邮件

;
; This is an example of how a Python Launcher .ini file is structured.
; If you want to use it, copy it to py.ini and make your changes there,
; after removing this header comment.
; This file will be removed on launcher uninstallation and overwritten
; when the launcher is installed or upgraded, so don't edit this file
; as your changes will be lost.
;
[defaults]
; Uncomment out the following line to have Python 3 be the default.
;python=3


[commands]
; Put in any customised commands you want here, in the format
; that's shown in the example line. You only need quotes around the
; executable if the path has spaces in it.
;
; You can then use e.g. #!myprog as your shebang line in scripts, and
; the launcher would invoke e.g.
;
; "c:\Program Files\MyCustom.exe" -a -b -c myscript.py
;
;myprog="c:\Program Files\MyCustom.exe" -a -b -c

因此,在我的系统上,我在存在 py.exe 的 c:\windows\下创建了一个 py.ini文件,其中包含以下内容:

[defaults]
python=3

Now when you Double-click on a .py file, it will be run by the new default version. Now I'm only using the Shebang #! python2 on my old scripts.

在 WindowsCMD 中使用 SET命令临时设置当前会话的默认 python。

SET PATH=C:\Program Files\Python 3.5

以上的方法都不管用,这就是对我管用的方法:

ftype Python.File=C:\Path\to\python.exe "%1" %*

此命令应在作为管理员启动的命令提示符中运行

警告: 即使这个命令中的路径设置为 python35,如果安装了 python36,它也会将默认值设置为 python36。为了防止这种情况,您可以将文件夹名从 Python36临时更改为 xxPython36,运行该命令,然后将更改删除到 Python 36文件夹。


编辑: 这就是我最后所做的: 我使用 Python Launcher。 https://stackoverflow.com/a/68139696/3154274

运行“ py”命令将告诉您运行的是什么版本。如果您当前运行的是3.x,并且需要切换到2.x,则需要使用开关“-2”

py -2

如果需要从 python 2.x 切换到 python 3.x,则必须使用’-3’开关

py -3

如果你想把 Python 3. x 作为默认版本,那么你需要创建一个环境变量“ PY _ PYTHON”,并把它的值设置为3。

这对我很有效:

去吧

Control Panel\System and Security\System

选择

Advanced system settings from the left panel
from Advanced tab click on Environment Variables

In the System variables section search for (创建如果不存在)

PYTHONPATH

准备

C:\Python27\;C:\Python27\Scripts;

或者你想要的版本

你需要重启 CMD。

如果它仍然不工作,您可能希望在 PATH 变量中只保留您所需的版本。

Check which one the system is currently using:

python --version

将主文件夹位置(例如 C/ProgramFiles)和脚本位置(C/ProgramFiles/Scripts)添加到系统的环境变量。添加3.x 版本和2.x 版本

路径位置在环境变量内排列。如果您想使用 Python 2.x,只需将 Python 2.x 的路径放在第一位,如果您想使用 Python 3.x,只需将3.x 放在第一位

这使用 python2

这是在两个版本都已安装的情况下。

转到 这台电脑右击点击属性高级系统设置

您将看到 系统属性。从这里导航到 高级标签-> 单击 环境变数

您将看到用户变量的上半部分和 系统变量下半身

Check the 系统变数 and double-click on the 路径 (to edit the Path).

Check for the path of Python(which you wish to run i.e. Python 2.x or 3.x) and 移到顶端 of the Path list.

Restart the Command Prompt, and now when you check the version of Python, it should correctly display the required version.

这对我有用。

如果要使用 python3.6,必须将 python3.6移到列表的顶部。

Python2.7也是如此 如果您希望将2.7作为默认值,那么请确保将 python2.7移动到列表的最顶部。

步骤1

enter image description here

第二步

enter image description here

step 3

enter image description here

然后关闭任何 cmd 命令提示符并再次打开,它应该按预期工作。

巨蟒,版本

>>> Python 3.6

如果您是 Windows 用户,并且您有 Python 3.3或更高版本,那么您应该在您的机器上安装 用于 Windows 的 Python 启动程序,这是启动所有 Python 脚本的推荐方法(不管该脚本需要的 Python 版本如何)。

作为一个使用者

  • 从命令行运行脚本时,始终键入 py而不是 python

  • Setup your "Open with..." explorer default program association with C:\Windows\py.exe

  • 将命令行文件扩展名关联设置为使用 Python Launcher for Windows (这将使键入 py成为可选项) :

    ftype Python.File="C:\windows\py.exe" "%L" %*

    ftype Python.NoConFile="C:\Windows\pyw.exe" "%L" %*

  • 通过设置 PY_PYTHON环境变量来设置你喜欢的默认版本(例如 PY_PYTHON=3.7)。通过键入 py,您可以看到 python 的默认版本。还可以设置 PY_PYTHON3PY_PYTHON2来指定缺省的 python3和 python2版本(如果有多个版本)。

  • 如果需要运行特定版本的 python,可以使用 py -M.m(其中 M是主版本,m是次版本)。例如,py -3将运行任何已安装的 python3版本。

  • 列出使用 py -0安装的 python 版本。

作为一个编剧

  • 在脚本的顶部包含一个 shebang 行,指示所需的 python 的主版本号。如果该脚本与任何其他次要版本不兼容,也要包含次要版本号。例如:

    #!/usr/bin/env python3

  • 您也可以使用 shebang 行来指示虚拟环境(参见下面的 PEP 486)。


参见

If you know about Environment variables and the system variable called path, consider that any version of any binary which comes sooner, will be used as default.

看看下面的图片,我有3个不同的 Python 版本,但 python3.8将作为默认使用,因为它来得比其他两个更早。(对于上面提到的形象,越快意味着越高!)

enter image description here

如果在 Windows 上,请使用 ASSOC 命令更改 python 程序的默认 python 版本。

assoc .py=<Python 3.1 directory>

在我的 Windows 11操作系统上安装了 Python 版本的 2.73.73.93.11之后,上面的解决方案对我来说不起作用。

命令 py --help给出了一些设置 python 版本的提示,例如:

usage:
[...]
如果没有给出确切的版本,则使用最新的 版本可以被以下任何一种重写,(优先 订单) :
从 py.ini 中的% LOCALAPPDATA% py.ini 中的[默认值]

我发现设置 具体点默认 Python 版本的最简单方法是在 %LOCALAPPDATA%\py.ini下创建/编辑 py.ini文件。

  • Content of py.ini 👇
[defaults]
python=3.7
  • 控制台输出 管理员用户正确:
C:\Users\bob>py --version
Python 3.7.9

由于我的问题稍有不同,而且上述方法对我都不适用,我将添加适用于我的方法。我今天已经为 python 3.10安装了新的 python 启动程序,通过它安装了这个版本,但是命令窗口不能识别这个版本。相反,它列出了我电脑上旧的 python3版本。

最后,在 Windows 程序列表中,我看到了两个版本的 python 启动程序。我卸载了旧版本,现在 python 3.10在运行 py -0时正确显示,并且是运行 py时选择的版本。

如果这是一个菜鸟的回答,我很抱歉,我对这一切都是新手。

我遇到了同样的问题,并通过再次执行安装文件解决了这个问题。当你这样做,python 自动知道你已经安装之前,所以它建议你3个选项!选择修改并选择所有你想要修改的软件包,然后在下一页你可以检查新版本的 python 是否被添加到你的环境变量中。检查它,然后执行修改。是的,而且解决了。