How To Install perl-Unicode-MapUTF8 on CentOS 7

In this tutorial we learn how to install perl-Unicode-MapUTF8 on CentOS 7. perl-Unicode-MapUTF8 is Conversions to and from arbitrary character sets and UTF8

Introduction

In this tutorial we learn how to install perl-Unicode-MapUTF8 on CentOS 7.

What is perl-Unicode-MapUTF8

Unicode for converting to and from UTF8 and other encodings. In essence, a way to give multiple existing Unicode modules a single common interface so you don’t have to know the underlying implementations to do simple UTF8 to-from other character set string conversions. As such, it wraps the Unicode and Jcode modules in a standardized and simple API.

We can use yum or dnf to install perl-Unicode-MapUTF8 on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Unicode-MapUTF8.

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

sudo yum -y install perl-Unicode-MapUTF8

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

sudo dnf -y install perl-Unicode-MapUTF8

How To Uninstall perl-Unicode-MapUTF8 on CentOS 7

To uninstall only the perl-Unicode-MapUTF8 package we can use the following command:

sudo dnf remove perl-Unicode-MapUTF8

References

Summary

In this tutorial we learn how to install perl-Unicode-MapUTF8 on CentOS 7 using yum and dnf.