这是C中最简单的python解释器。我想要的是使用.py文件作为C中硬编码引擎的脚本语言 - 运行此代码(使用python27.dll / lib)在使用python的机器上运行正常
#pragma comment(lib,"python27.lib")
#include <Python27/Python.h>
static PyObject* emb_numargs(PyObject *self, PyObject *args)
{
if(!PyArg_ParseTuple(args, ":numargs"))
return NULL;
return Py_BuildValue("i", 1);
}
static PyMethodDef EmbMethods[] = {
{"numargs", emb_numargs, METH_VARARGS,
"Return 1 you dumb person."},
{NULL, NULL, 0, NULL}
};
int main(int argc, char *argv[])
{
FILE *fp;
Py_SetProgramName(argv[0]); /* optional but recommended */
Py_Initialize();
{
int i;
PyObject* sys = PyImport_ImportModule("sys");
PyObject* path = PyObject_GetAttrString(sys, "path");
// Add current project path to sys.path
PyList_Append(path, PyString_FromString("."));
for (i = 0; i < PyList_Size(path); i++)
{
PyString_AsString(PyList_GetItem(path, i));
}
Py_DECREF(sys);
}
Py_InitModule("emb", EmbMethods);
fp = fopen("a.py", "r");
PyRun_SimpleFile(fp, "a.py");
Py_Finalize();
system("pause");
return 0;
}
(a.py刚刚调用emb.numargs) 问题是,当我将可执行文件移植到没有安装python的计算机时,我得到了ImportError:No Module named site。关于设置PYTHONPATH等有一些建议,但是id不起作用。我做错了什么?
答案 0 :(得分:0)
好的,我发现问题在于必须从python主文件夹中分发Lib文件夹以及可执行文件