python:ImportError:动态模块没有定义模块导出功能

时间:2016-08-18 00:22:50

标签: python-3.x importerror python-c-extension

我试图安装用c编写的函数(使用python3 setup.py install )但是python raise ImportError:动态模块没有定义模块导出函数(PyInit_costFunction) 错误!

costFunction.c:

static PyObject *costFunction(PyObject *self, PyObject *args)
{
    return Py_BuildValue("d", 0); // or anything!
}

static PyMethodDef costFunction_methods[] = {
    {"costFunction", (PyCFunction)costFunction, METH_VARARGS, "cost function"},
    {NULL, NULL, 0, NULL}
};

static struct PyModuleDef costFunctionmodule = {
    PyModuleDef_HEAD_INIT,"costFunction", NULL, -1, costFunction_methods
};

PyMODINIT_FUNC PyInit_costFunction(void)
{
    return PyModule_Create(&costFunctionmodule);
}

setup.py:

from distutils.core import setup, Extension
setup(name='costFunction', version='1.0',  \
      ext_modules=[Extension('costFunction', ['costFunction.c'],include_dirs=['include'])])

外部库:tinyexpr

我使用 linux mint 18 with python 3.5.2

修改 python3-dev版本是3.5.1-3

1 个答案:

答案 0 :(得分:1)

最后我用了一个肮脏的把戏!

使用以下代码编译c代码(不带python.h和C中的任何python数据类型):

gcc -fPIC -Wall -O3 costFunction.c -o costFunction.so -shared  -fopenmp

并使用python ctypes模块加载和使用它:

dll = ctypes.CDLL("./costFunction.so")
costFunction = dll.cost_function
costFunction.restype = ctypes.c_double
costFunction.argtypes = [ctypes.POINTER(ctypes.c_double), ctypes.c_int]