How To Install ImageMagick-libs on AlmaLinux 8

In this tutorial we learn how to install ImageMagick-libs in AlmaLinux 8. ImageMagick-libs is ImageMagick libraries to link with

Introduction

In this tutorial we learn how to install ImageMagick-libs on AlmaLinux 8.

What is ImageMagick-libs

This packages contains a shared libraries to use within other applications.

We can use yum or dnf to install ImageMagick-libs on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install ImageMagick-libs.

Install ImageMagick-libs on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install ImageMagick-libs using dnf by running the following command:

sudo dnf -y install ImageMagick-libs

Install ImageMagick-libs on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install ImageMagick-libs using yum by running the following command:

sudo yum -y install ImageMagick-libs

How To Uninstall ImageMagick-libs on AlmaLinux 8

To uninstall only the ImageMagick-libs package we can use the following command:

sudo dnf remove ImageMagick-libs

References

Summary

In this tutorial we learn how to install ImageMagick-libs on AlmaLinux 8 using yum and dnf.