我正在尝试用C ++编写一个库,以便可以在不同平台上使用Python(特别是jupyter notebooks)中的方法。 为此我使用Boost.Python。我正在使用macOS Sierra 10.12.6在我的笔记本电脑上调试我的代码。
我能够将我的源代码编译成.so
库,但遗憾的是当我调用它们时它的方法会崩溃。
我使用以下命令序列安装了Boost和Boost.Python库:
brew install --build-from-source --with-python --fresh -vd boost
brew install boost-python
之后,我采用了以下简单的C ++代码(main.cpp
):
#include <boost/python.hpp>
using namespace boost::python;
#include <string>
namespace {
std::string greet() {
return "hello, world";
}
int square(int number) {
return number * number;
}
}
BOOST_PYTHON_MODULE(boost_python_example)
{
def("greet", greet);
def("square", square);
}
创建了一个CMakeLists.txt
(cmake verison是3.9.6):
cmake_minimum_required(VERSION 3.0)
set(CMAKE_BUILD_TYPE Release)
if(APPLE)
set(CMAKE_SHARED_LIBRARY_SUFFIX ".so")
endif(APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -v -lstdc++ -lpython2.7 -lboost_python")
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_library(boost_python_example SHARED main.cpp)
set_target_properties(boost_python_example PROPERTIES PREFIX "")
然后,通过执行make clean && cmake . && make
,我获得了所需的库boost_python_example.so
,并将其路径添加到PYTHONPATH
。
现在我的代码可以从Python成功导入,但它在执行方法时会以各种方式崩溃:
user-osx1:BoostPythonTest user$ python
Python 2.7.14 |Anaconda, Inc.| (default, Oct 5 2017, 02:28:52)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import boost_python_example
>>> from boost_python_example import *
>>> square(5)
Segmentation fault: 11
user-osx1:BoostPythonTest user$ python
Python 2.7.14 |Anaconda, Inc.| (default, Oct 5 2017, 02:28:52)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from boost_python_example import *
>>> greet()
Fatal Python error: PyEval_SaveThread: NULL tstate
Abort trap: 6
user-osx1:BoostPythonTest user$ which python
/Users/user/anaconda2/bin/python
user-osx1:BoostPythonTest user$ python --version
Python 2.7.14 :: Anaconda, Inc.
我做错了什么?据我所知,当Boost.Python与用户的Python版本不兼容时,通常会发生这样的错误。
这就是我用--build-from-source --with-python
选项重新安装Boost的原因,但它没有帮助。
答案 0 :(得分:0)
是否缺少来自PyEval_InitThreads()
阻止的BOOST_PYTHON_MODULE
来电?