Boost.python 因 libboost_python.so.1.41.0 失败:无法打开共享对象文件
我已经安装了 Boost.Python。安装过程中没有错误,但我遇到了问题。当我尝试构建我的项目时,ererything 没问题,但是当我运行我的包装项目时,出现错误:
import wrraped_project
ImportError: libboost_python.so.1.41.0: cannot open shared object file: No such file or directory
我尝试将项目复制到 libboost_python.so.1.41.0 以及项目的 lib 等。但是每次我中小企业错误。
I have already installed Boost.Python. There were no erros during instalation, but I have a problem. When I try to build my project ererything is OK, but when I run my wrapped project there is an error:
import wrraped_project
ImportError: libboost_python.so.1.41.0: cannot open shared object file: No such file or directory
I tried to copy the project to libboost_python.so.1.41.0 also the lib to the project etc. But every time I have the sme error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查boost库文件是否在
LD_LIBRARY_PATH
中。如果这没有帮助,请检查文件名是否正确,如果不同则创建符号链接。
Check if the boost library files are in
LD_LIBRARY_PATH
.If that doesn't help, check if the filename is correct, and create a symlink if different.
您能给我们您的/usr/lib目录的相关内容吗?我假设你使用的是 Linux,对吗?您是否使用包管理器安装了 Boost.Python?
Can you give us the relevant content of your /usr/lib directory? I'm assuming you're on Linux, right? And did you install Boost.Python with a package manager?