How To Install libtext-unidecode-perl on Debian 10
Introduction
In this tutorial we learn how to install libtext-unidecode-perl
on Debian 10.
What is libtext-unidecode-perl
libtext-unidecode-perl is:
It often happens that you have non-Roman text data in Unicode, but you can’t display it – usually because you’re trying to show it to a user via an application that doesn’t support Unicode, or because the fonts you need aren’t accessible. You could represent the Unicode characters as “???????” or “\15BA\15A0\1610…”, but that’s nearly useless to the user who actually wants to read what the text says.
What Text::Unidecode provides is a function, unidecode(…) that 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.
There are three methods to install libtext-unidecode-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libtext-unidecode-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libtext-unidecode-perl
using apt-get
by running the following command:
sudo apt-get -y install libtext-unidecode-perl
Install libtext-unidecode-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtext-unidecode-perl
using apt
by running the following command:
sudo apt -y install libtext-unidecode-perl
Install libtext-unidecode-perl Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libtext-unidecode-perl
using aptitude
by running the following command:
sudo aptitude -y install libtext-unidecode-perl
How To Uninstall libtext-unidecode-perl on Debian 10
To uninstall only the libtext-unidecode-perl
package we can use the following command:
sudo apt-get remove libtext-unidecode-perl
Uninstall libtext-unidecode-perl And Its Dependencies
To uninstall libtext-unidecode-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libtext-unidecode-perl
Remove libtext-unidecode-perl Configurations and Data
To remove libtext-unidecode-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libtext-unidecode-perl
Remove libtext-unidecode-perl configuration, data, and all of its dependencies
We can use the following command to remove libtext-unidecode-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtext-unidecode-perl
Dependencies
libtext-unidecode-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libtext-unidecode-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.