Powershell Python:更改使用的版本

时间:2012-11-11 03:10:24

标签: python powershell

我正在使用windows xp。

我正在尝试在PowerShell中使用Python。在我的电脑上,我安装了Python 3.3和2.7。我正在尝试运行2.7但是每当我在powershell中输入“python”它就会打开3.3。

如何选择要运行的Python版本?

2 个答案:

答案 0 :(得分:8)

在powershell中,输入以下内容:

$Env:PY_PYTHON = 2

然后尝试使用命令“py”。它应该启动Python 2.7。如果你想再次运行Python 3.3,“py -3”就可以了。

答案 1 :(得分:1)

Python Select之类的东西? Windows支持是实验性的,但值得一试。

https://github.com/Activestate/pythonselect

还有switchpy,虽然它只支持Python 3.2。

apipes.blogspot.com/2010/10/switchpy.html?m=1