如何让 cimport 在 Cython 中工作?

发布于 2024-12-02 19:52:55 字数 327 浏览 0 评论 0原文

我的目录结构如下:

/my_module

init.py

A/

  __init__.py

  a.pyx

B/

  __init__.py

  b.pyx

在 b.pyx 中,我想从 Aa 导入函数 常规的 python 导入可以工作,但 cimport 总是失败。

另外,我分别编译 A/ 和 B/,因为我不知道如何将 setup.py 放在顶部模块中。

有人可以帮忙吗?

I have a directory structure as so:

/my_module

init.py

A/

  __init__.py

  a.pyx

B/

  __init__.py

  b.pyx

In b.pyx I want to cimport functions from A.a.
A regular python import works, but a cimport always fails.

Also, I'm compiling A/ and B/ separately because I couldn't figure out how to put a setup.py in the top module.

Can anyone help here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赏烟花じ飞满天 2024-12-09 19:52:55

您必须创建一个 cython 声明文件,一个 .pxd

它应仅包含您要导入的类和函数的声明。

You have to create a cython declaration file, a .pxd

It shall contain only declarations of classes and functions that you want to import.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文