设置:安装了 Python 2.7.5 和 Python 3.3.2 的 Win7 环境并将其添加到系统路径中。
C:\\py -2
将启动 Python 2.7.5,
C:\\py -3
将启动 Python 3.3.2,
C:\\python
将启动 Python 3.3.2。
是否可以切换“python”映射到哪个 Python 版本,如果可以,如何切换?
设置:安装了 Python 2.7.5 和 Python 3.3.2 的 Win7 环境并将其添加到系统路径中。
C:\\py -2
将启动 Python 2.7.5,
C:\\py -3
将启动 Python 3.3.2,
C:\\python
将启动 Python 3.3.2。
是否可以切换“python”映射到哪个 Python 版本,如果可以,如何切换?
在您的最后一行中,Windows 选择您%PATH%
包含python
可执行文件的第一个目录。您无法更改这一点,除非重新排序您的路径。
py.bat
我在路径早期的目录中使用了这个小文件:
\python27\python.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
所以我只输入py
. 我有一个类似于py3.bat
启动 Python 3 的方法。.bat
在我调用的其他文件中py.bat
or ,所以当我更改和/或py3.bat
时,它们都会选择我想要的 Python 版本。py.bat
py3.bat
编辑:顺便说一句,我意识到我py.bat
的名字与名为py
. 我不在乎:-)