libltdl.so.3:无法打开共享对象文件:Ubuntu 14.04 中没有此类文件或目录
libltdl.so.3: cannot open shared object file: No such file or directory in Ubuntu 14.04
我有一个程序需要共享库 libltdl.so.3。虽然 运行 这个程序在 14.04 中我遇到了以下错误:
error while loading shared libraries: libltdl.so.3: cannot open shared object file: No such file or directory
我已经安装并更新了 libtool。 运行 atp-get install 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
虽然 运行 找到 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.so.3 吗?
我找到的唯一解决方案是创建一个符号链接
ln -s /usr/lib/x86_64-linux-gnu/libltdl.so /usr/lib/x86_64-linux-gnu/libltdl.so.3
我有一个程序需要共享库 libltdl.so.3。虽然 运行 这个程序在 14.04 中我遇到了以下错误:
error while loading shared libraries: libltdl.so.3: cannot open shared object file: No such file or directory
我已经安装并更新了 libtool。 运行 atp-get install 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
虽然 运行 找到 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.so.3 吗?
我找到的唯一解决方案是创建一个符号链接
ln -s /usr/lib/x86_64-linux-gnu/libltdl.so /usr/lib/x86_64-linux-gnu/libltdl.so.3