目的
以下文章将为您提供有关如何在操作系统上检查Python版本的信息。
困难
简单
约定
使用说明
您的系统可能同时安装了Python 2和Python 3版本。有关系统已安装的python版本的第一个提示是通过检查已安装的python二进制可执行文件:
$ ls /usr/bin/python*
/usr/bin/python /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.6 /usr/bin/python3.6m /usr/bin/python3m
Python二进制文件可以安装的另一条路径是/usr/local/bin/
。如您所见,我们的系统同时安装了Python 2和Python 3版本。
从命令行检查Python版本
接下来,我们将从命令行检查python版本号:
Python 2
$ /usr/bin/python -V
OR
/usr/bin/python --version
Python 2.7.15rc1
Python 3
$ /usr/bin/python3 -V
OR
/usr/bin/python3 --version
Python 3.6.5
(adsbygoogle = window.adsbygoogle || [])。push({});
使用解释器检查Python版本
而不是从检索python版本linux命令我们可以直接要求python解释器执行版本检查。
Python 2
$ python
Python 2.7.15rc1 (default, Apr 15 2018, 21:51:34)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.python_version()
'2.7.15rc1'
>>>
Python 3
$ python
Python 3.6.5 (default, Apr 1 2018, 05:46:30)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.python_version()
'3.6.5'
>>>
使用脚本检查Python版本
以下python脚本会将python版本打印到标准输出。将以下python代码另存为名为新文件check-python-version.py
:
import platform
python_version=platform.python_version()
print (python_version)
一旦准备好运行check-python-version.py
获取python版本。
Python 2
$ python check-python-version.py
2.7.15rc1
Python 3
$ python3 check-python-version.py
3.6.5