How To Install flatpak-builder-tests on Ubuntu 18.04

In this tutorial we learn how to install flatpak-builder-tests on Ubuntu 18.04. flatpak-builder-tests is Application deployment framework for desktop apps (tests)

Introduction

In this tutorial we learn how to install flatpak-builder-tests on Ubuntu 18.04.

What is flatpak-builder-tests

flatpak-builder-tests is:

Flatpak installs, manages and runs sandboxed desktop application bundles. See the flatpak package for a more comprehensive description.

This package contains automated tests.

There are three methods to install flatpak-builder-tests 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 flatpak-builder-tests Using apt-get

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

sudo apt-get update

After updating apt database, We can install flatpak-builder-tests using apt-get by running the following command:

sudo apt-get -y install flatpak-builder-tests

Install flatpak-builder-tests Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install flatpak-builder-tests using apt by running the following command:

sudo apt -y install flatpak-builder-tests

Install flatpak-builder-tests 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 flatpak-builder-tests using aptitude by running the following command:

sudo aptitude -y install flatpak-builder-tests

How To Uninstall flatpak-builder-tests on Ubuntu 18.04

To uninstall only the flatpak-builder-tests package we can use the following command:

sudo apt-get remove flatpak-builder-tests

Uninstall flatpak-builder-tests And Its Dependencies

To uninstall flatpak-builder-tests and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove flatpak-builder-tests

Remove flatpak-builder-tests Configurations and Data

To remove flatpak-builder-tests configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge flatpak-builder-tests

Remove flatpak-builder-tests configuration, data, and all of its dependencies

We can use the following command to remove flatpak-builder-tests configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge flatpak-builder-tests

References

Summary

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