How To Install libobject-tiny-perl on Debian 10
Introduction
In this tutorial we learn how to install libobject-tiny-perl
on Debian 10.
What is libobject-tiny-perl
libobject-tiny-perl is:
Object::Tiny is a Perl module for building classes as simply as possible. It is useful for rapid prototyping, especially for data classes with a simple structure and mostly read-only accessors. It is a minimalistic way to build classes, intentionally omitting complex features that interfere with the way you build modules.
There are three methods to install libobject-tiny-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 libobject-tiny-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 libobject-tiny-perl
using apt-get
by running the following command:
sudo apt-get -y install libobject-tiny-perl
Install libobject-tiny-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libobject-tiny-perl
using apt
by running the following command:
sudo apt -y install libobject-tiny-perl
Install libobject-tiny-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 libobject-tiny-perl
using aptitude
by running the following command:
sudo aptitude -y install libobject-tiny-perl
How To Uninstall libobject-tiny-perl on Debian 10
To uninstall only the libobject-tiny-perl
package we can use the following command:
sudo apt-get remove libobject-tiny-perl
Uninstall libobject-tiny-perl And Its Dependencies
To uninstall libobject-tiny-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libobject-tiny-perl
Remove libobject-tiny-perl Configurations and Data
To remove libobject-tiny-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libobject-tiny-perl
Remove libobject-tiny-perl configuration, data, and all of its dependencies
We can use the following command to remove libobject-tiny-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libobject-tiny-perl
Dependencies
libobject-tiny-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libobject-tiny-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.