在 mac a cpython 上预安装 python?
Preinstalled python on mac a cpython?
正如标题所说,我想知道mac预装的python是不是cpython。我的意思是逻辑说它可能是,但我找不到它被正式写在任何地方所以想确认。
我想下载一些东西,为了兼容性,它们要求安装的 python 为 cpython/iron python.
使用命令 Python --version
你会得到这样的信息:
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
编译器gcc
几乎可以肯定cpython
另一种方法(更官方)是用python代码检查:
import platform
platform.python_implementation()
Returns a string identifying the Python implementation. Possible
return values are: ‘CPython’, ‘IronPython’, ‘Jython’, ‘PyPy’
正如标题所说,我想知道mac预装的python是不是cpython。我的意思是逻辑说它可能是,但我找不到它被正式写在任何地方所以想确认。
我想下载一些东西,为了兼容性,它们要求安装的 python 为 cpython/iron python.
使用命令 Python --version
你会得到这样的信息:
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
编译器gcc
几乎可以肯定cpython
另一种方法(更官方)是用python代码检查:
import platform
platform.python_implementation()
Returns a string identifying the Python implementation. Possible return values are: ‘CPython’, ‘IronPython’, ‘Jython’, ‘PyPy’