How To Install pairs on Debian 9

In this tutorial we learn how to install pairs on Debian 9. pairs is memory and pairs game

Introduction

In this tutorial we learn how to install pairs on Debian 9.

What is pairs

pairs is:

Pairs is a game that helps you training your memory by remembering different images, shapes, sounds and text.

Features:

  • pair images
  • pair similar images
  • pair sounds
  • pair sounds and images

This package is part of the KDE educational module.

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

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

sudo apt-get update

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

sudo apt-get -y install pairs

Install pairs Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install pairs using apt by running the following command:

sudo apt -y install pairs

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

sudo aptitude -y install pairs

How To Uninstall pairs on Debian 9

To uninstall only the pairs package we can use the following command:

sudo apt-get remove pairs

Uninstall pairs And Its Dependencies

To uninstall pairs and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove pairs

Remove pairs Configurations and Data

To remove pairs configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge pairs

Remove pairs configuration, data, and all of its dependencies

We can use the following command to remove pairs configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge pairs

Dependencies

pairs have the following dependencies:

References

Summary

In this tutorial we learn how to install pairs package on Debian 9 using different package management tools: apt, apt-get and aptitude.