I am trying to install a perl package and getting the following dependencies error:
[user@localhost Downloads]$ rpm -Uvh ImageMagick-6.8.4-9.i386.rpm
error: Failed dependencies:
libltdl.so.3 is needed by ImageMagick-6.8.4-4.i386
In order to solve it, I have tried to install the missing package but it seems that it already exists:
[Evgeny@localhost Downloads]$ sudo yum install libltdl.so.3
...
No package libltdl.so.3 available.
Then I have tried to use yum with reinstall option but I got another error:
[Evgeny@localhost Downloads]$ sudo yum reinstall libltdl.so.3
...
No Match for argument: libltdl.so.3
Error: Nothing to do
What's the problem here? Should I completely uninstall current libltdl.so.3 package and the install it form scratch? Or maybe there is a different issue?