How To Install babl on CentOS 8
Introduction
In this tutorial we learn how to install babl on CentOS 8.
What is babl
Babl is a dynamic, any to any, pixel format conversion library. It provides conversions between the myriad of buffer types images can be stored in. Babl doesn’t only help with existing pixel formats, but also facilitates creation of new and uncommon ones. Babl is a dynamic, any to any, pixel format conversion library. It provides conversions between the myriad of buffer types images can be stored in. Babl doesn’t only help with existing pixel formats, but also facilitates creation of new and uncommon ones.
We can use yum or dnf to install babl on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install babl.
Install babl on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install babl using yum by running the following command:
sudo yum -y install babl
Install babl on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install babl using dnf by running the following command:
sudo dnf -y install babl
How To Uninstall babl on CentOS 8
To uninstall only the babl package we can use the following command:
sudo dnf remove babl
References
Summary
In this tutorial we learn how to install babl on CentOS 8 using yum and dnf.