我试图嵌入我的宠物项目的一些蟒蛇。 我已经减少了我的问题,以下面的代码:
#include <Python.h>
#include "iostream"
int main(int argc, char *argv[])
{
Py_Initialize();
PyObject *globals = Py_BuildValue("{}");
PyObject *locals = Py_BuildValue("{}");
PyObject *string_result = PyRun_StringFlags(
"a=5\n"
"s='hello'\n"
"d=dict()\n"
,
Py_file_input, globals, locals, NULL);
if ( PyErr_Occurred() ) {PyErr_Print();PyErr_Clear();return 1;}
return 0;
}
(我知道我没有清理任何引用。这是一个例子。)
它可以通过编译
c++ $(python-config --includes) $(python-config --libs) test.cpp -o test
如果我运行它,我得到以下错误:
$ ./test
Traceback (most recent call last):
File "<string>", line 3, in <module>
NameError: name 'dict' is not defined
看来内建的功能不会被加载。 我也不能import
任何东西。 我得到__import__
丢失。 我怎样才能加载缺少的模块或什么我失踪?
谢谢。