How To Install perl-Text-Unidecode on CentOS 7

In this tutorial we learn how to install perl-Text-Unidecode on CentOS 7. perl-Text-Unidecode is US-ASCII transliterations of Unicode text

Introduction

In this tutorial we learn how to install perl-Text-Unidecode on CentOS 7.

What is perl-Text-Unidecode

Text takes Unicode data and tries to represent it in US-ASCII characters (i.e., the universally displayable characters between 0x00 and 0x7F). The representation is almost always an attempt at transliteration – i.e., conveying, in Roman letters, the pronunciation expressed by the text in some other writing system.

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

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

sudo yum -y install perl-Text-Unidecode

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

sudo dnf -y install perl-Text-Unidecode

How To Uninstall perl-Text-Unidecode on CentOS 7

To uninstall only the perl-Text-Unidecode package we can use the following command:

sudo dnf remove perl-Text-Unidecode

References

Summary

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