Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的计算机(Linux 操作系统)上安装了 Python 2.7 和 2.4。
如果我只是输入“python”作为我的命令,则打开 2.7 版本。我下载了一个仅与 python 2.4 兼容的脚本。如何让 python 2.4 而不是 2.7 运行?
通常安装 Python 时会同时使用可执行文件中的版本号和默认值python;只需使用版本化名称:
python
python2.7 python2.4
只有主要和次要版本是版本名称的一部分,而不是微版本。