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.
我有一个静态库(liba.a),我想在 python 中使用它
但import只能在python中导入动态库
import
如何在python中导入静态库?
你不能这样做。你有两个选择:
将该库重新编译为共享库。然后用于ctypes从动态加载的共享库中调用方法。
ctypes
构建一个Python 扩展,将 Python 接口暴露给共享库。