如何同时安装 Python 2.x 和 Python 3.x

如何同时安装 Python 2.x 和 Python 3.x

我认为标题说明了一切。

答案1

Python 3 可从存储库获取,并可与 Python 2 一起安装:

sudo apt-get install python3 python

您可以使用-V开关来找出次要版本号:

$ python3 -V
Python 3.1.2

$ python -V
python 2.6.6

答案2

评论:请注意,python 2 和 3 将使用不同的输出通道进行打印,而成功时返回的代码将为零。

command=python2 --version
rc=0
stderr=Python 2.7.12

command=python3 --version
rc=0
stdout=Python 3.5.2

相关内容