ペット プロジェクトに Python を埋め込もうとしています。問題を次のコードに減らしました。
#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__
が欠けていると思います。不足しているモジュールまたは不足しているものをロードするにはどうすればよいですか?
ありがとう。