How To Install libmodule-find-perl on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 390 words
Introduction
In this tutorial we learn how to install libmodule-find-perl
on Ubuntu.
What is libmodule-find-perl
libmodule-find-perl is:
Module::Find is a Perl module that allows developers to find and use modules in categories. This is useful for auto-detecting driver or plugin modules. You can differentiate between looking in the category itself or in all subcategories.
If you want Module::Find to search in a certain directory (like the plugins directory of your software installation), make sure you modify @INC before you call the Module::Find functions.
There are three methods to install libmodule-find-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 libmodule-find-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 libmodule-find-perl
using apt-get
by running the following command:
sudo apt-get -y install libmodule-find-perl
Install libmodule-find-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmodule-find-perl
using apt
by running the following command:
sudo apt -y install libmodule-find-perl
Install libmodule-find-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 libmodule-find-perl
using aptitude
by running the following command:
sudo aptitude -y install libmodule-find-perl
How To Uninstall libmodule-find-perl on Ubuntu
To uninstall only the libmodule-find-perl
package we can use the following command:
sudo apt-get remove libmodule-find-perl
Uninstall libmodule-find-perl And Its Dependencies
To uninstall libmodule-find-perl
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove libmodule-find-perl
Remove libmodule-find-perl Configurations and Data
To remove libmodule-find-perl
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge libmodule-find-perl
Remove libmodule-find-perl configuration, data, and all of its dependencies
We can use the following command to remove libmodule-find-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmodule-find-perl
Dependencies
libmodule-find-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmodule-find-perl
package on Ubuntu using different package management tools: apt, apt-get and aptitude.