TheXed Asked: 2011-04-30 08:58:08 +0800 CST2011-04-30 08:58:08 +0800 CST 2011-04-30 08:58:08 +0800 CST 如何并行安装 Python 2.x 和 Python 3.x 772 我认为标题说明了一切。 python 2 个回答 Voted Best Answer Mike Axiak 2011-04-30T09:58:20+08:002011-04-30T09:58:20+08:00 Python 3 可从存储库中获得,并且可以与 Python 2 一起安装: sudo apt-get install python3 python 您可以使用-V开关找出次要版本号: $ python3 -V Python 3.1.2 $ python -V python 2.6.6 Alexander Stohr 2019-05-07T05:22:22+08:002019-05-07T05:22:22+08:00 评论:请注意,python 2 和 3 将使用不同的输出通道进行打印,而在成功的情况下返回的代码将为零。 command=python2 --version rc=0 stderr=Python 2.7.12 . command=python3 --version rc=0 stdout=Python 3.5.2
Python 3 可从存储库中获得,并且可以与 Python 2 一起安装:
您可以使用
-V
开关找出次要版本号:评论:请注意,python 2 和 3 将使用不同的输出通道进行打印,而在成功的情况下返回的代码将为零。
.