Python 中的 Vix API

发布于 2024-10-04 13:38:40 字数 185 浏览 2 评论 0原文

我需要使用 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 技术交流群。

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

发布评论

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

评论(1

软甜啾 2024-10-11 13:38:41

如果错误的其余部分类似于

OSError: libvix.so: cannot open shared object file: No such file or directory

那么您可能需要将 libvix.so 的位置放入 LD_LIBRARY_PATH 环境变量中。

If the rest of the error is something like

OSError: libvix.so: cannot open shared object file: No such file or directory

Then you probably need to put the location of the libvix.so in the LD_LIBRARY_PATH environment variable.

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