How To Install liblocale-maketext-fuzzy-perl on Ubuntu 18.04

In this tutorial we learn how to install liblocale-maketext-fuzzy-perl on Ubuntu 18.04. liblocale-maketext-fuzzy-perl is Maketext from already interpolated strings

Introduction

In this tutorial we learn how to install liblocale-maketext-fuzzy-perl on Ubuntu 18.04.

What is liblocale-maketext-fuzzy-perl

liblocale-maketext-fuzzy-perl is:

Locale::Maketext::Fuzzy is a subclass of Locale::Maketext, with additional support for localizing messages that already contains interpolated variables. This is most useful when the messages are returned by external modules – for example, to match “dir: command not found” against “[_1]: command not found”.

There are three methods to install liblocale-maketext-fuzzy-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install liblocale-maketext-fuzzy-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 liblocale-maketext-fuzzy-perl using apt-get by running the following command:

sudo apt-get -y install liblocale-maketext-fuzzy-perl

Install liblocale-maketext-fuzzy-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install liblocale-maketext-fuzzy-perl using apt by running the following command:

sudo apt -y install liblocale-maketext-fuzzy-perl

Install liblocale-maketext-fuzzy-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install liblocale-maketext-fuzzy-perl using aptitude by running the following command:

sudo aptitude -y install liblocale-maketext-fuzzy-perl

How To Uninstall liblocale-maketext-fuzzy-perl on Ubuntu 18.04

To uninstall only the liblocale-maketext-fuzzy-perl package we can use the following command:

sudo apt-get remove liblocale-maketext-fuzzy-perl

Uninstall liblocale-maketext-fuzzy-perl And Its Dependencies

To uninstall liblocale-maketext-fuzzy-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove liblocale-maketext-fuzzy-perl

Remove liblocale-maketext-fuzzy-perl Configurations and Data

To remove liblocale-maketext-fuzzy-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge liblocale-maketext-fuzzy-perl

Remove liblocale-maketext-fuzzy-perl configuration, data, and all of its dependencies

We can use the following command to remove liblocale-maketext-fuzzy-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge liblocale-maketext-fuzzy-perl

References

Summary

In this tutorial we learn how to install liblocale-maketext-fuzzy-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.