How To Install perl-Pango on CentOS 7
Introduction
In this tutorial we learn how to install perl-Pango
on CentOS 7.
What is perl-Pango
perl-Pango provides Perl bindings for the text layout/rendering library pango. Pango is a library for laying out and rendering text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, but using Pango in conjunction with Cairo and/or Gtk2 provides a complete solution with high quality text handling and graphics rendering.
We can use yum
or dnf
to install perl-Pango
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Pango.
Install perl-Pango on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install perl-Pango
using yum
by running the following command:
sudo yum -y install perl-Pango
Install perl-Pango on CentOS 7 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 perl-Pango
using dnf
by running the following command:
sudo dnf -y install perl-Pango
How To Uninstall perl-Pango on CentOS 7
To uninstall only the perl-Pango
package we can use the following command:
sudo dnf remove perl-Pango
References
Summary
In this tutorial we learn how to install perl-Pango
on CentOS 7 using yum
and dnf
.