Python安装基础之如何查看python版本、如何查看多个python版本
查看当前Python版本:
python --version
或者使用Python解释器:
import sys
print(sys.version)
查看系统中安装的多个Python版本,可以使用以下方法:
- 在命令行中直接输入Python命令后跟版本号:
python2 --version
python3 --version
- 使用
which
或where
命令查找Python可执行文件的路径:
which python2
which python3
或者在Windows上:
where python
- 如果有多个Python版本安装在系统中,可以使用
ascii_letters
模块查看所有可用的Python版本。首先,在Python解释器中执行以下命令:
import subprocess
import sys
# 获取系统中所有可用Python版本
versions = {v.split()[1].strip(':') for v in subprocess.check_output(['where', 'python']).decode().splitlines()}
# 打印Python版本
for version in sorted(versions):
try:
output = subprocess.check_output(['python{0}{1}'.format(version, sys.executable.split(str(version))[-1]), '--version']).decode().strip()
print('Python {0}: {1}'.format(version, output))
except subprocess.CalledProcessError:
print('Python {0}: Not found'.format(version))
请注意,这些方法可能需要根据您的操作系统和环境进行适当的调整。
评论已关闭