gpt4 book ai didi

模块的 Python C API 版本不匹配

转载 作者:行者123 更新时间:2023-12-04 18:09:32 24 4
gpt4 key购买 nike

cpp-模块代码:

#include <iostream>
#include <boost/python.hpp>

void Hello()
{
std::cout << "string: " << PYTHON_API_STRING << "\n";
std::cout << "int: " << PYTHON_API_VERSION << "\n";
}

BOOST_PYTHON_MODULE(hello)
{
namespace py = boost::python;
py::def("Hello", &Hello);
}

编译:

g++ -m32 -Wall -fPIC -I /usr/include -I /usr/include/python2.5/ hello.cpp -L /usr/lib/python2.5/ -Wl,-Bstatic -lboost_python -Wl,-Bdynamic -lgcc -shared -o hello.so

python 控制台(在同一主机或其他主机上 - 没有区别):

>>> import hello
__main__:1: RuntimeWarning: Python C API version mismatch for module hello: This Python has API version 1013, module hello has version 1012.
>>> hello.Hello()
string: 1013
int: 1013
>>>

为什么是 1012?从哪里来?

最佳答案

当某些内部 API 调用发生不兼容的更改时,Python 的 API 版本号会更改。 Python 2.4 使用版本号 1012。Python 2.5 及更高版本使用版本号 1013。

您似乎包含 Python 2.5,因此您应该获得 1013 版本。API 版本在 Include/modsupport.h 中定义。该文件是否已损坏或已被修改?其他东西会覆盖该值吗?

关于模块的 Python C API 版本不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17958903/

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