Python 中的 Vix API
我需要使用 ctypes 模块在 ubuntu 中导入 VIX api 库。 当我这样做时:
vix = CDLL('libvix.so')
它失败:“无法打开...”
问题是什么??? libvix.so 和 python 模块位于同一目录中,
谢谢!
I need to import VIX api libs in ubuntu using ctypes module.
When I do:
vix = CDLL('libvix.so')
It fails: "cannot open..."
what´s the problem??? libvix.so and python module are in the same directory
thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果错误的其余部分类似于
那么您可能需要将 libvix.so 的位置放入 LD_LIBRARY_PATH 环境变量中。
If the rest of the error is something like
Then you probably need to put the location of the libvix.so in the LD_LIBRARY_PATH environment variable.