MacOS Monterey arm64 中包含 Python headers 的位置

Where are Python headers included in MacOS Monterey arm64

我目前正在努力在我的系统上找到 python header,因此无法将它们包含到 C++ 应用程序中

这是我的 cmake 文件 -->

cmake_minimum_required(VERSION 3.14)

project(ondoki-desktop VERSION 0.1 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_TOOLCHAIN_FILE /Users/ahoehne/repos/vcpkg/scripts/buildsystems/vcpkg.cmake)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)



set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
include_directories(${PYTHON_INCLUDE_DIRS})

find_package(Python3 COMPONENTS Interpreter REQUIRED)





if(DEFINED ENV{VIRTUAL_ENV} OR DEFINED ENV{CONDA_PREFIX})
  set(_pip_args)
else()
  set(_pip_args "--user")
endif()

include(ExternalProject)
ExternalProject_Add(ondoki-daemon
  GIT_REPOSITORY    "https://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@github.com/ondoki-org/ondoki-daemon.git"
  GIT_TAG           develop
  SOURCE_DIR        "${PROJECT_SOURCE_DIR}/ondoki-daemon"

  CONFIGURE_COMMAND ""
  BUILD_COMMAND     ""
  INSTALL_COMMAND   ""
  TEST_COMMAND      ""

)

execute_process(COMMAND ${Python3_EXECUTABLE} -m pip install -r ${PROJECT_SOURCE_DIR}/ondoki-daemon/requirements.txt)

find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Quick REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Quick REQUIRED)
find_package(ZeroMQ CONFIG REQUIRED)
find_package(nlohmann_json CONFIG REQUIRED)
find_package(cppzmq CONFIG REQUIRED)
find_package(protobuf CONFIG REQUIRED)
find_package( Boost REQUIRED COMPONENTS  )
find_package (Boost COMPONENTS filesystem regex REQUIRED)
find_package(msgpack CONFIG REQUIRED)

find_package(pybind11 CONFIG REQUIRED)




set(PROJECT_SOURCES
        main.cpp
        qml.qrc
        images.qrc
        python.qrc
        zmqbridge.cpp
        zmqbridge.h
        zmqworker.h
        zmqworker.cpp
)

if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
    qt_add_executable(ondoki-desktop
        MANUAL_FINALIZATION
        ${PROJECT_SOURCES}
    )
# Define target properties for Android with Qt 6 as:
#    set_property(TARGET ondoki-desktop APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
#                 ${CMAKE_CURRENT_SOURCE_DIR}/android)
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
else()
    if(ANDROID)
        add_library(ondoki-desktop SHARED
            ${PROJECT_SOURCES}
        )
# Define properties for Android with Qt 5 after find_package() calls as:
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
    else()
        add_executable(ondoki-desktop
          ${PROJECT_SOURCES}
        )
    endif()
endif()

target_compile_definitions(ondoki-desktop
  PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
target_link_libraries(ondoki-desktop
  PRIVATE Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Quick
  protobuf::libprotoc protobuf::libprotobuf protobuf::libprotobuf-lite libzmq
          libzmq-static  nlohmann_json nlohmann_json::nlohmann_json
          cppzmq cppzmq-static ${Boost_LIBRARIES} ¢{PYTHON_LIBRARIES}
          msgpackc msgpackc-cxx pybind11::lto pybind11::embed pybind11::module

  )

set_target_properties(ondoki-desktop PROPERTIES
    MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
    MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
    MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
)

if(QT_VERSION_MAJOR EQUAL 6)
    qt_import_qml_plugins(ondoki-desktop)
    qt_finalize_executable(ondoki-desktop)
endif()


包含#include 的错误消息是common.h Python.h 未找到

找到 python.h 结果

/Applications/CLion.app/Contents/plugins/python-ce/helpers/pydev/pydevd_attach_to_process/common/python.h
/Applications/PyCharm.app/Contents/plugins/python/helpers/pydev/pydevd_attach_to_process/common/python.h
/opt/homebrew/Cellar/boost/1.76.0/include/boost/mpi/python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/parameter/python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/arg_from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/arg_from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/arg_to_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/obj_mgr_arg_from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/return_from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/shared_ptr_from_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/converter/shared_ptr_to_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/detail/wrap_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python/register_ptr_to_python.hpp
/opt/homebrew/Cellar/boost/1.76.0/include/boost/python.hpp

/usr/local/include 没有 Python.h 和 /opt/homebrew/include

a "which python3" 导致 /opt/homebrew/bin/python3

我的cmake参数如下

-GNinja
-DCMAKE_BUILD_TYPE:STRING=Debug
-DCMAKE_PROJECT_INCLUDE_BEFORE:PATH=%{IDE:ResourcePath}/package-manager/auto-setup.cmake
-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable}
-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}
-DCMAKE_TOOLCHAIN_FILE=/Users/ahoehne/repos/vcpkg/scripts/buildsystems/vcpkg.cmake
%{CMAKE_OSX_ARCHITECTURES:DefaultFlag}

感谢您对正确方向的任何帮助或提示。

***编辑***

如果我包括

include_directories(/opt/homebrew/Frameworks/Python.framework/Headers)

至少他似乎找到了 header

但在声明说明符之后产生“预期的成员名称或”;“--> 在 object.h 文件之后,我看到

typedef struct{
    int slot;    /* slot id, see below */
    void *pfunc; /* function pointer */
} PyType_Slot;

typedef struct{
    const char* name;
    int basicsize;
    int itemsize;
    unsigned int flags;
    PyType_Slot *slots; /* terminated by slot==0. */
} PyType_Spec;

在错误代码行...如果我删除 PyType_Slot *slots;该程序可以编译,但我非常怀疑这是一个错误,而是我这边的问题

在我看来,第一个问题是这些行的顺序:

include_directories(${PYTHON_INCLUDE_DIRS})
find_package(Python3 COMPONENTS Interpreter REQUIRED)

所以你引用了一个未知的 PYTHON_INCLUDE_DIRS 变量。

第二个问题是变量名本身。您正在搜索 Python3 包,所以根据 FindPython3 doc

对我来说变量名应该是 Python3_INCLUDE_DIRS

第三个问题是您只搜索 Interpreter,所以无论如何都找不到 headers。

总结一下,请检查是否有类似以下的内容:

find_package(Python3 COMPONENTS Interpreter Development REQUIRED)
include_directories(${Python3_INCLUDE_DIRS})