How To Install libxslt on AlmaLinux 8

In this tutorial we learn how to install libxslt in AlmaLinux 8. libxslt is Library providing the Gnome XSLT engine

Introduction

In this tutorial we learn how to install libxslt on AlmaLinux 8.

What is libxslt

This C library allows to transform XML files into other XML files (or HTML, text, …) using the standard XSLT stylesheet transformation mechanism. To use it you need to have a version of libxml2 >= 2.6.27 installed. The xsltproc command is a command line interface to the XSLT engine

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

Install libxslt 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 libxslt using dnf by running the following command:

sudo dnf -y install libxslt

Install libxslt 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 libxslt using yum by running the following command:

sudo yum -y install libxslt

How To Uninstall libxslt on AlmaLinux 8

To uninstall only the libxslt package we can use the following command:

sudo dnf remove libxslt

References

Summary

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