Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Mac OS X 下编译了一个module.pyx文件module.so,现在我可以使用它:
module.pyx
module.so
from module import method1
但是,同样的.so文件在 Linux 上是不行的,我必须module.so在 Linux 下编译一个新的。
.so
所以问题是,我如何用 Cython 编写跨平台(Mac 和 Linux)模块?
你不能。您必须为需要支持的每个平台编译不同的库。