gpt4 book ai didi

python - 运行多个 Python 版本

转载 作者:太空狗 更新时间:2023-10-30 00:23:47 35 4
gpt4 key购买 nike

我想在我的盒子里运行多个 Python 版本。是否有任何 Python 版本管理器,我可以在多个 Python 版本之间切换而无需调用 Python 二进制文件的完整路径?我试过 virtualenv,它似乎只解决了运行多个 Python 库版本的问题。

感谢您的帮助。

最佳答案

从 bash 调用 python 时,您可以尝试使用别名。

user@machine:~$ alias python1234='/usr/bin/python2.5'
user@machine:~$ python1234
Python 2.5.4 (r254:67916, Jan 20 2010, 21:44:03)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

假设您有一个名为 script.py 的脚本,其中包含以下内容:

import sys
print sys.version

因此,使用不同版本的 python 启动脚本如下所示:

user@machine:~$ python script.py 
2.6.2 (release26-maint, Apr 19 2009, 01:56:41)
[GCC 4.3.3]
user@machine:~$ python1234 script.py
2.5.4 (r254:67916, Jan 20 2010, 21:44:03)
[GCC 4.3.3]

关于python - 运行多个 Python 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3877126/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com