python中的Vix API

我需要使用ctypes模块在ubuntu中导入VIX api libs。 当我做:
 vix = CDLL('libvix.so')
它失败了:“无法打开......” 有什么问题??? libvix.so和python模块位于同一目录中 谢谢!!     
已邀请:
如果其余的错误是这样的
OSError: libvix.so: cannot open shared object file: No such file or directory
然后,您可能需要将libvix.so的位置放在LD_LIBRARY_PATH环境变量中。     

要回复问题请先登录注册