How To Install libcatalyst-devel-perl on Debian 10
Introduction
In this tutorial we learn how to install libcatalyst-devel-perl
on Debian 10.
What is libcatalyst-devel-perl
libcatalyst-devel-perl is:
Catalyst::Devel is a collection of modules needed for Catalyst application development and testing, but is not required to run them. This package is not needed for Catalyst application deployment on production servers. Among other things, it includes the following tools:
Module::Install::Catalyst Provides various utilities for creating Catalyst module distributions.
Catalyst::Helper Helper module for bootstrapping a Catalyst application via catalyst.pl.
Catalyst::Restarter Utility to restart the server when files have changed
There are three methods to install libcatalyst-devel-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 libcatalyst-devel-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 libcatalyst-devel-perl
using apt-get
by running the following command:
sudo apt-get -y install libcatalyst-devel-perl
Install libcatalyst-devel-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libcatalyst-devel-perl
using apt
by running the following command:
sudo apt -y install libcatalyst-devel-perl
Install libcatalyst-devel-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 libcatalyst-devel-perl
using aptitude
by running the following command:
sudo aptitude -y install libcatalyst-devel-perl
How To Uninstall libcatalyst-devel-perl on Debian 10
To uninstall only the libcatalyst-devel-perl
package we can use the following command:
sudo apt-get remove libcatalyst-devel-perl
Uninstall libcatalyst-devel-perl And Its Dependencies
To uninstall libcatalyst-devel-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libcatalyst-devel-perl
Remove libcatalyst-devel-perl Configurations and Data
To remove libcatalyst-devel-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libcatalyst-devel-perl
Remove libcatalyst-devel-perl configuration, data, and all of its dependencies
We can use the following command to remove libcatalyst-devel-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcatalyst-devel-perl
Dependencies
libcatalyst-devel-perl have the following dependencies:
- perl
- libcatalyst-perl
- libconfig-general-perl
- libfile-changenotify-perl
- libfile-copy-recursive-perl
- libfile-sharedir-perl
- libmoose-perl
- libmoosex-emulate-class-accessor-fast-perl
- libnamespace-autoclean-perl
- libnamespace-clean-perl
- libpath-class-perl
- libtemplate-perl
- libyaml-tiny-perl
References
Summary
In this tutorial we learn how to install libcatalyst-devel-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.