How To Install libmoops-perl on Debian 9
Introduction
In this tutorial we learn how to install libmoops-perl
on Debian 9.
What is libmoops-perl
libmoops-perl is:
Moops is sugar for declaring and using roles and classes in Perl.
The syntax is inspired by MooseX::Declare, and Stevan Little’s p5-mop-redux project (which is in turn partly inspired by Perl 6).
Moops has fewer than half of the dependencies as MooseX::Declare, loads in about 25% of the time, and the classes built with it run significantly faster. Moops does not use Devel::Declare, instead using Perl’s pluggable keyword API.
Moops uses Moo to build classes and roles by default, but allows you to use Moose if you desire. (And Mouse experimentally.)
Install libmoosex-xsaccessor-perl to automatically speedup Moose classes.
There are three methods to install libmoops-perl
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libmoops-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 libmoops-perl
using apt-get
by running the following command:
sudo apt-get -y install libmoops-perl
Install libmoops-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmoops-perl
using apt
by running the following command:
sudo apt -y install libmoops-perl
Install libmoops-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 libmoops-perl
using aptitude
by running the following command:
sudo aptitude -y install libmoops-perl
How To Uninstall libmoops-perl on Debian 9
To uninstall only the libmoops-perl
package we can use the following command:
sudo apt-get remove libmoops-perl
Uninstall libmoops-perl And Its Dependencies
To uninstall libmoops-perl
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libmoops-perl
Remove libmoops-perl Configurations and Data
To remove libmoops-perl
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libmoops-perl
Remove libmoops-perl configuration, data, and all of its dependencies
We can use the following command to remove libmoops-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmoops-perl
Dependencies
libmoops-perl have the following dependencies:
- libimport-into-perl
- libkavorka-perl
- libkeyword-simple-perl
- liblexical-accessor-perl
- libmoox-late-perl
- libmoosex-mungehas-perl
- libparse-keyword-perl
- libperlx-assert-perl
- libtype-tiny-perl
- libvariable-magic-perl
- libtrue-perl
- libexporter-tiny-perl
- libmodule-runtime-perl
- libmoo-perl
- libscalar-list-utils-perl
References
Summary
In this tutorial we learn how to install libmoops-perl
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.