How To Install libmessage-passing-amqp-perl on Debian 10
Introduction
In this tutorial we learn how to install libmessage-passing-amqp-perl
on Debian 10.
What is libmessage-passing-amqp-perl
libmessage-passing-amqp-perl is:
Message::Passing::AMQP is an AMQP adaptor for Message::Passing for speaking to AMQP servers, for example <RabbitMQ http://www.rabbitmq.com/> or QPID.
The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol for message-oriented middleware.
There are three methods to install libmessage-passing-amqp-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 libmessage-passing-amqp-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 libmessage-passing-amqp-perl
using apt-get
by running the following command:
sudo apt-get -y install libmessage-passing-amqp-perl
Install libmessage-passing-amqp-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmessage-passing-amqp-perl
using apt
by running the following command:
sudo apt -y install libmessage-passing-amqp-perl
Install libmessage-passing-amqp-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 libmessage-passing-amqp-perl
using aptitude
by running the following command:
sudo aptitude -y install libmessage-passing-amqp-perl
How To Uninstall libmessage-passing-amqp-perl on Debian 10
To uninstall only the libmessage-passing-amqp-perl
package we can use the following command:
sudo apt-get remove libmessage-passing-amqp-perl
Uninstall libmessage-passing-amqp-perl And Its Dependencies
To uninstall libmessage-passing-amqp-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libmessage-passing-amqp-perl
Remove libmessage-passing-amqp-perl Configurations and Data
To remove libmessage-passing-amqp-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libmessage-passing-amqp-perl
Remove libmessage-passing-amqp-perl configuration, data, and all of its dependencies
We can use the following command to remove libmessage-passing-amqp-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmessage-passing-amqp-perl
Dependencies
libmessage-passing-amqp-perl have the following dependencies:
- libanyevent-perl
- libanyevent-rabbitmq-perl
- libjson-perl
- libjson-xs-perl
- libmessage-passing-perl
- libmoose-perl
- libnamespace-autoclean-perl
- libtask-weaken-perl
- libtry-tiny-perl
- perl
References
Summary
In this tutorial we learn how to install libmessage-passing-amqp-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.