How To Install libass on AlmaLinux 8

In this tutorial we learn how to install libass in AlmaLinux 8. libass is Portable library for SSA/ASS subtitles rendering

Introduction

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

What is libass

Libass is a portable library for SSA/ASS subtitles rendering.

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

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

sudo dnf -y install libass

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

sudo yum -y install libass

How To Uninstall libass on AlmaLinux 8

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

sudo dnf remove libass

References

Summary

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