How To Install libstring-errf-perl on Debian 10
Introduction
In this tutorial we learn how to install libstring-errf-perl
on Debian 10.
What is libstring-errf-perl
libstring-errf-perl is:
String::Errf provides errf, a simple string formatter that works something like sprintf|perlfunc/sprintf. It is implemented using String::Formatter and Sub::Exporter. Their documentation may be useful in understanding or extending String::Errf.
There are three methods to install libstring-errf-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 libstring-errf-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 libstring-errf-perl
using apt-get
by running the following command:
sudo apt-get -y install libstring-errf-perl
Install libstring-errf-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libstring-errf-perl
using apt
by running the following command:
sudo apt -y install libstring-errf-perl
Install libstring-errf-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 libstring-errf-perl
using aptitude
by running the following command:
sudo aptitude -y install libstring-errf-perl
How To Uninstall libstring-errf-perl on Debian 10
To uninstall only the libstring-errf-perl
package we can use the following command:
sudo apt-get remove libstring-errf-perl
Uninstall libstring-errf-perl And Its Dependencies
To uninstall libstring-errf-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libstring-errf-perl
Remove libstring-errf-perl Configurations and Data
To remove libstring-errf-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libstring-errf-perl
Remove libstring-errf-perl configuration, data, and all of its dependencies
We can use the following command to remove libstring-errf-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libstring-errf-perl
Dependencies
libstring-errf-perl have the following dependencies:
- perl
- libjson-maybexs-perl
- libparams-util-perl
- libstring-formatter-perl
- libsub-exporter-perl
- libtimedate-perl
References
Summary
In this tutorial we learn how to install libstring-errf-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.