我有一个需要共享库libltdl.so3的程序。在14.04运行此程序时,我遇到以下错误:
error while loading shared libraries: libltdl.so.3: cannot open shared object file: No such file or directory我已经安装和更新了libtool。在运行atp安装libltdl3时,我得到以下输出
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libltdl3 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libltdl3' has no installation candidate在运行locate libltdl.so时,我得到
/usr/lib/x86_64-linux-gnu/libltdl.so
/usr/lib/x86_64-linux-gnu/libltdl.so.7
/usr/lib/x86_64-linux-gnu/libltdl.so.7.3.0有人能告诉我怎么弄到libltdl.so3吗?
发布于 2016-11-17 13:32:10
我找到的唯一解决办法就是创建一个符号链接
ln -s /usr/lib/x86_64-linux-gnu/libltdl.so /usr/lib/x86_64-linux-gnu/libltdl.so.3请参阅:http://englanders.us/~jason/howtos.php?howto=libtool
https://stackoverflow.com/questions/32071695
复制相似问题