gpt4 book ai didi

python - CPython:动态模块未定义模块导出函数错误

转载 作者:行者123 更新时间:2023-11-30 22:13:37 27 4
gpt4 key购买 nike

我刚刚成功编译了 C++ 类的 Python 包装器。但是,当我尝试将模块加载到 Python 时(通过 import cell),我收到以下消息:

ImportError: dynamic module does not define module export function (PyInit_cell)

我检查了系统在所有情况下都使用 Python3,因此这不是 Python 版本问题。
下面是我的 setup.py 文件:

from distutils.core import setup, Extension
from Cython.Build import cythonize

setup(ext_modules = cythonize(Extension(
"cell",
sources=["cell.pyx", "cell.cc"],
language="c++",
extra_compile_args=["-std=c++11"],
)))

下面是生成的 .so 文件的转储:

0000000000201020 B __bss_start
0000000000201020 b completed.7594
w __cxa_finalize@@GLIBC_2.2.5
0000000000000530 t deregister_tm_clones
00000000000005c0 t __do_global_dtors_aux
0000000000200de8 t __do_global_dtors_aux_fini_array_entry
0000000000201018 d __dso_handle
0000000000200df8 d _DYNAMIC
0000000000201020 D _edata
0000000000201028 B _end
0000000000000630 T _fini
0000000000000600 t frame_dummy
0000000000200de0 t __frame_dummy_init_array_entry
0000000000000640 r __FRAME_END__
0000000000201000 d _GLOBAL_OFFSET_TABLE_
w __gmon_start__
00000000000004e8 T _init
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
0000000000200df0 d __JCR_END__
0000000000200df0 d __JCR_LIST__
w _Jv_RegisterClasses
0000000000000570 t register_tm_clones
0000000000201020 d __TMC_END__

我真的不明白为什么模块没有加载到python中,因为构建过程中没有错误。

如有任何帮助,我们将不胜感激!

最佳答案

您不应该调用您的扩展/模块 cell.pyx ,以不同的方式调用它 - 例如 cycell.pyx .

为什么?构建扩展时执行以下步骤

  1. Cython 生成文件 cell.cppcell.pyx .
  2. 编译器编译cell.cpp到目标文件cell.o .
  3. 编译器编译cell.cc到目标文件cell.o并覆盖从 cell.pyx 创建的目标文件.
  4. 链接器链接 cell.o文件(但实际上只有一个) - 结果中没有 cell.pyx 中定义的内容/cell.cpp特别是PyInit_cell .

通过重命名 Cython 文件,您可以避免对象文件被覆盖。

显然,另一个选择是重命名您的 c++ 文件。

关于python - CPython:动态模块未定义模块导出函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50719086/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com