How To Install libmodule-starter-pbp-perl on Ubuntu 20.04
Introduction
In this tutorial we learn how to install libmodule-starter-pbp-perl on Ubuntu 20.04.
What is libmodule-starter-pbp-perl
libmodule-starter-pbp-perl is:
Module::Starter::PBP implements a simple approach to creating modules and their support files, based on the Module::Starter approach. Module::Starter needs to be installed before this module can be used.
When used as a Module::Starter plugin, this module allows you to specify a simple directory of templates which are filled in with module-specific information, and thereafter form the basis of your new module.
The default templates that this module initially provides are based on the recommendations in the book “Perl Best Practices” by Damian Conway.
There are three methods to install libmodule-starter-pbp-perl on Ubuntu 20.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 libmodule-starter-pbp-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-starter-pbp-perl using apt-get by running the following command:
sudo apt-get -y install libmodule-starter-pbp-perl
Install libmodule-starter-pbp-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libmodule-starter-pbp-perl using apt by running the following command:
sudo apt -y install libmodule-starter-pbp-perl
Install libmodule-starter-pbp-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-starter-pbp-perl using aptitude by running the following command:
sudo aptitude -y install libmodule-starter-pbp-perl
How To Uninstall libmodule-starter-pbp-perl on Ubuntu 20.04
To uninstall only the libmodule-starter-pbp-perl package we can use the following command:
sudo apt-get remove libmodule-starter-pbp-perl
Uninstall libmodule-starter-pbp-perl And Its Dependencies
To uninstall libmodule-starter-pbp-perl and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove libmodule-starter-pbp-perl
Remove libmodule-starter-pbp-perl Configurations and Data
To remove libmodule-starter-pbp-perl configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge libmodule-starter-pbp-perl
Remove libmodule-starter-pbp-perl configuration, data, and all of its dependencies
We can use the following command to remove libmodule-starter-pbp-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmodule-starter-pbp-perl
References
Summary
In this tutorial we learn how to install libmodule-starter-pbp-perl package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.