How To Install python3-plainbox-doc on Ubuntu 18.04

In this tutorial we learn how to install python3-plainbox-doc on Ubuntu 18.04. python3-plainbox-doc is toolkit for software and hardware testing (documentation)

Introduction

In this tutorial we learn how to install python3-plainbox-doc on Ubuntu 18.04.

What is python3-plainbox-doc

python3-plainbox-doc is:

PlainBox is a toolkit consisting of python3 library, development tools, documentation and examples. It is targeted at developers working on testing or certification applications and authors creating tests for such applications.

PlainBox can be used to both create simple and comprehensive test tools as well as to develop and execute test jobs and test scenarios. It was created as a refined and rewritten core of the Checkbox project. It has a well tested and documented core, small but active development community and a collection of associated projects that use it as a lower-level engine/back-end library.

PlainBox has a novel approach to discovering (and probing) hardware and software that is extensible and not hardwired into the system. It allows test developers to express association between a particular test and the hardware, software and configuration constraints that must be met for the test to execute meaningfully. This feature, along with pluggable test definitions, makes plainbox flexible and applicable to many diverse testing situations, ranging from mobile phones, traditional desktop computers, servers and up to testing “cloud” installations.

This package contains the documentation for the plainbox python3 library

There are three methods to install python3-plainbox-doc on Ubuntu 18.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 python3-plainbox-doc Using apt-get

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

sudo apt-get update

After updating apt database, We can install python3-plainbox-doc using apt-get by running the following command:

sudo apt-get -y install python3-plainbox-doc

Install python3-plainbox-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-plainbox-doc using apt by running the following command:

sudo apt -y install python3-plainbox-doc

Install python3-plainbox-doc 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 python3-plainbox-doc using aptitude by running the following command:

sudo aptitude -y install python3-plainbox-doc

How To Uninstall python3-plainbox-doc on Ubuntu 18.04

To uninstall only the python3-plainbox-doc package we can use the following command:

sudo apt-get remove python3-plainbox-doc

Uninstall python3-plainbox-doc And Its Dependencies

To uninstall python3-plainbox-doc and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove python3-plainbox-doc

Remove python3-plainbox-doc Configurations and Data

To remove python3-plainbox-doc configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge python3-plainbox-doc

Remove python3-plainbox-doc configuration, data, and all of its dependencies

We can use the following command to remove python3-plainbox-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-plainbox-doc

References

Summary

In this tutorial we learn how to install python3-plainbox-doc package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.