How To Install libscalar-list-utils-perl on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 382 words
Introduction
In this tutorial we learn how to install libscalar-list-utils-perl
on Ubuntu.
What is libscalar-list-utils-perl
libscalar-list-utils-perl is:
List::Util is a collection of Perl modules that provide subroutines useful for working with scalars and lists, which people have expressed would be nice to have as a perl builtin, but where usage would not be sufficient to warrant use of a keyword, and the size so small such that being individual extensions would be wasteful.
There are three methods to install libscalar-list-utils-perl
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libscalar-list-utils-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 libscalar-list-utils-perl
using apt-get
by running the following command:
sudo apt-get -y install libscalar-list-utils-perl
Install libscalar-list-utils-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libscalar-list-utils-perl
using apt
by running the following command:
sudo apt -y install libscalar-list-utils-perl
Install libscalar-list-utils-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 libscalar-list-utils-perl
using aptitude
by running the following command:
sudo aptitude -y install libscalar-list-utils-perl
How To Uninstall libscalar-list-utils-perl on Ubuntu
To uninstall only the libscalar-list-utils-perl
package we can use the following command:
sudo apt-get remove libscalar-list-utils-perl
Uninstall libscalar-list-utils-perl And Its Dependencies
To uninstall libscalar-list-utils-perl
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libscalar-list-utils-perl
Remove libscalar-list-utils-perl Configurations and Data
To remove libscalar-list-utils-perl
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libscalar-list-utils-perl
Remove libscalar-list-utils-perl configuration, data, and all of its dependencies
We can use the following command to remove libscalar-list-utils-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libscalar-list-utils-perl
Dependencies
libscalar-list-utils-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libscalar-list-utils-perl
package on Ubuntu using different package management tools: apt, apt-get and aptitude.