How To Install python-actionlib-msgs on Debian 10

Learn how to install python-actionlib-msgs on Debian 10 with this tutorial. python-actionlib-msgs is Messages relating to Robot OS actionlib, Python 2 interface

Introduction

In this tutorial we learn how to install python-actionlib-msgs on Debian 10.

What is python-actionlib-msgs

python-actionlib-msgs is:

This package is part of Robot OS (ROS), and contains the common messages to interact with an action server and an action client. For full documentation of the actionlib API see the https://wiki.ros.org/actionlib package.

This package contains the generated Python 2 package.

There are three methods to install python-actionlib-msgs 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 python-actionlib-msgs Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python-actionlib-msgs using apt-get by running the following command:

sudo apt-get -y install python-actionlib-msgs

Install python-actionlib-msgs Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-actionlib-msgs using apt by running the following command:

sudo apt -y install python-actionlib-msgs

Install python-actionlib-msgs 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 python-actionlib-msgs using aptitude by running the following command:

sudo aptitude -y install python-actionlib-msgs

How To Uninstall python-actionlib-msgs on Debian 10

To uninstall only the python-actionlib-msgs package we can use the following command:

sudo apt-get remove python-actionlib-msgs

Uninstall python-actionlib-msgs And Its Dependencies

To uninstall python-actionlib-msgs and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove python-actionlib-msgs

Remove python-actionlib-msgs Configurations and Data

To remove python-actionlib-msgs configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge python-actionlib-msgs

Remove python-actionlib-msgs configuration, data, and all of its dependencies

We can use the following command to remove python-actionlib-msgs configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-actionlib-msgs

Dependencies

python-actionlib-msgs have the following dependencies:

References

Summary

In this tutorial we learn how to install python-actionlib-msgs package on Debian 10 using different package management tools: apt, apt-get and aptitude.