下面是我的setup.py和UserMethods.cpp文件。
我的问题是这样的:我正在尝试使用distutils
创建和安装python软件包,但遇到了一些问题。
运行python3 setup.py install --user
时没有问题。它编译并创建一个名为build/
的文件的lib.linux-x86_64-3.6
目录。当我检查.local/lib/python3.6/site-pacages
目录时,有一个名为UserMethods.cpython-36m-x86_64-linux-gnu.so
的文件。
当我尝试导入软件包时出现问题:
$ python3
>>> import UserMethods
返回以下错误:
ImportError: ~/.local/lib/python3.6/site-packages/UserMethods.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN12NA62Analysis4Core18AnalyzerIdentifierD1Ev
我不知道如何或在哪里定义这样的符号或为什么要创建它。是否有人了解此错误的来源?提前致谢。
编辑: 这是setup.py文件:
from distutils.core import setup, Extension
UM_module = Extension('UserMethods', sources=['UserMethodsModule.cpp'], language='C++',
include_dirs=[ ...many... ],
extra_compile_args=['-std=c++11'],
libraries=['stdc++'],)
setup(name='UserMethods',
version='1.0',
ext_modules=[UM_module],
)
这是我的UserMethods.cpp文件:
#include <Python.h>
#define PY_SSIZE_T_CLEAN
#include "UserMethods.hh"
/* OUR FUNCTIONS GO HERE */
static PyObject* UM_test(PyObject *self, PyObject *args){
const char *command;
int sts;
if ( !PyArg_ParseTuple(args, "s", &command) ){
return NULL;
}
sts = system(command);
return PyLong_FromLong(sts);
}
static PyMethodDef UserMethods[] = {
{"system", UM_test, METH_VARARGS, "execute shell command."},
{NULL, NULL, 0, NULL}
};
static struct PyModuleDef UserMethodsModule = {
PyModuleDef_HEAD_INIT,
"UserMethods",
NULL,
-1,
UserMethods
};
PyMODINIT_FUNC PyInit_UserMethods(void){
return PyModule_Create(&UserMethodsModule);
}
答案 0 :(得分:0)
按照上述@Holt,此错误是由于未导入包含错误中的类型定义的库引起的。
我必须在链接步骤中将库的路径添加到库中,该路径已在Setup.py的Extension函数调用中添加到“ extra_link_args”参数中。