gpt4 book ai didi

python - 我安装了 2 个版本的 python,但 cmake 使用的是旧版本。如何强制 cmake 使用较新的版本?

转载 作者:IT老高 更新时间:2023-10-28 20:32:51 24 4
gpt4 key购买 nike

我安装了 2 个版本的 python,但 cmake 使用的是旧版本。如何强制 cmake 使用较新的版本?

最佳答案

您可以根据需要尝试以下任何一种:

对于 CMake >= 3.12

根据更新日志:

New "FindPython3" and "FindPython2" modules, as well as a new
"FindPython" module, have been added to provide a new way to locate
python environments.

find_package(Python COMPONENTS Interpreter Development)

Docs :

This module looks preferably for version 3 of Python. If not found, version 2 is searched. To manage concurrent versions 3 and 2 of Python, use FindPython3 and FindPython2 modules rather than this one.

对于 CMake < 3.12

Docs :

find_package(PythonInterp 2.7 REQUIRED)
find_package(PythonLibs 2.7 REQUIRED)

关于python - 我安装了 2 个版本的 python,但 cmake 使用的是旧版本。如何强制 cmake 使用较新的版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15291500/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com