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.
module.pyxファイルをmodule.soMac OS X でコンパイルしたところ、次のように使用できるようになりました。
module.pyx
module.so
from module import method1
ただし、同じ.soファイルは Linux では機能しません。Linux で新しいファイルをコンパイルする必要がありますmodule.so。
.so
問題は、Cython を使用してクロスプラットフォーム (Mac と Linux) のモジュールを作成するにはどうすればよいかということです。