Hello, I've inherited an implementation to recreate our Production environment that was assembled by a consulting company into a Staging server. On our production we're currently running RHEL 6.9, IM 6.9.9-40x86_64. On Staging we have CentOS 6.9. I've downloaded the 2 rpm files: ImageMagick-6.9.9-40.x86_64.rpm and ImageMagick-libs-6.9.9-40.x86_64.rpm and tried to install on the CentOS 6.9 server. Regardless of the order I try to install these rpms I receive dependencies notifications. How do I get the required dependencies for these? Below is output:
# rpm -Uvh ImageMagick-6.9.9-40.x86_64.rpm error: Failed dependencies:
ImageMagick-libs(x86-64) = 6.9.9-40 is needed by ImageMagick-6.9.9-40.x86_64
libMagickCore-6.Q16.so.5()(64bit) is needed by ImageMagick-6.9.9-40.x86_64
Install IM-6.9.9-40.x86_64.rpm on Centos 6.9
-
- Posts: 1
- Joined: 2018-06-25T05:04:13-07:00
- Authentication code: 1152
-
- Posts: 28
- Joined: 2009-01-20T12:37:52-07:00
Re: Install IM-6.9.9-40.x86_64.rpm on Centos 6.9
Try installing both rpms at the same time.
If you still get a message about unmet dependencies try
yum should attempt to install dependencies from the CentOS repos.
Code: Select all
$ rpm -Uvh ImageMagick-6.9.9-40.x86_64.rpm ImageMagick-libs-6.9.9-40.x86_64.rpm
Code: Select all
$ yum install ImageMagick-6.9.9-40.x86_64.rpm ImageMagick-libs-6.9.9-40.x86_64.rpm
-
- Posts: 28
- Joined: 2009-01-20T12:37:52-07:00
Re: Install IM-6.9.9-40.x86_64.rpm on Centos 6.9
Where did you download them from? There's no links to rpms for 6.9.9 at http://www.imagemagick.org/script/download.php and neither of them are available at https://www.imagemagick.org/download/li ... OS/x86_64/ghostpom12 wrote: ↑2018-06-25T05:05:46-07:00 I've downloaded the 2 rpm files: ImageMagick-6.9.9-40.x86_64.rpm and ImageMagick-libs-6.9.9-40.x86_64.rpm