这是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 不起作用。我究竟做错了什么?