FindPythonInterp

在 3.27 版本中变更: 此模块仅在策略 CMP0148 未设置为 NEW 时可用。

自 3.12 版本起已弃用: 请使用 FindPython3FindPython2FindPython 代替。

查找 python 解释器

此模块查找是否安装了 Python 解释器,并确定可执行文件的位置。此代码设置以下变量

PYTHONINTERP_FOUND         - Was the Python executable found
PYTHON_EXECUTABLE          - path to the Python interpreter
PYTHON_VERSION_STRING      - Python version found e.g. 2.5.2
PYTHON_VERSION_MAJOR       - Python major version found e.g. 2
PYTHON_VERSION_MINOR       - Python minor version found e.g. 5
PYTHON_VERSION_PATCH       - Python patch version found e.g. 2

Python_ADDITIONAL_VERSIONS 变量可用于指定在搜索 Python 时应考虑的版本号列表。你需要在调用 find_package(PythonInterp) 之前设置此变量。

如果同时调用 find_package(PythonInterp)find_package(PythonLibs),请先调用 find_package(PythonInterp) 以默认获取当前活动的 Python 版本以及一致版本的 PYTHON_LIBRARIES。

注意

调用 find_package(PythonInterp ${V}) 以查找 python 版本 V 可能会找到一个没有版本后缀的 python 可执行文件。在这种情况下,不会尝试避免来自其他版本的 python 可执行文件。请使用 FindPython3FindPython2FindPython 代替。