How To Install libdazzle on CentOS 8
Introduction
In this tutorial we learn how to install libdazzle on CentOS 8.
What is libdazzle
libdazzle is a collection of fancy features for GLib and Gtk+ that aren’t quite ready or generic enough for use inside those libraries. This is often a proving ground for new widget prototypes. Applications such as Builder tend to drive development of this project. libdazzle is a collection of fancy features for GLib and Gtk+ that aren’t quite ready or generic enough for use inside those libraries. This is often a proving ground for new widget prototypes. Applications such as Builder tend to drive development of this project.
We can use yum or dnf to install libdazzle on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdazzle.
Install libdazzle on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install libdazzle using yum by running the following command:
sudo yum -y install libdazzle
Install libdazzle 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 libdazzle using dnf by running the following command:
sudo dnf -y install libdazzle
How To Uninstall libdazzle on CentOS 8
To uninstall only the libdazzle package we can use the following command:
sudo dnf remove libdazzle
References
Summary
In this tutorial we learn how to install libdazzle on CentOS 8 using yum and dnf.