How To Install sitplus-data on Debian 9
Introduction
In this tutorial we learn how to install sitplus-data on Debian 9.
What is sitplus-data
sitplus-data is:
SITPLUS is a free software (GNU GPL) framework whose main goal is to provide ludic-therapeutic activities for people with disabilities. It offers new forms of interaction based on computer vision, voice and other peripherals to produce a result in the form of image and sound. Inspired by the cause and effect applications, SITPLUS provides a tool for continuous and remote interaction, attainable to the majority of people with cognitive, sensory and physical disabilities.
This package provides the data for sitplus.
There are three methods to install sitplus-data 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 sitplus-data Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install sitplus-data using apt-get by running the following command:
sudo apt-get -y install sitplus-data
Install sitplus-data Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install sitplus-data using apt by running the following command:
sudo apt -y install sitplus-data
Install sitplus-data 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 sitplus-data using aptitude by running the following command:
sudo aptitude -y install sitplus-data
How To Uninstall sitplus-data on Debian 9
To uninstall only the sitplus-data package we can use the following command:
sudo apt-get remove sitplus-data
Uninstall sitplus-data And Its Dependencies
To uninstall sitplus-data and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove sitplus-data
Remove sitplus-data Configurations and Data
To remove sitplus-data configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge sitplus-data
Remove sitplus-data configuration, data, and all of its dependencies
We can use the following command to remove sitplus-data configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge sitplus-data
Dependencies
sitplus-data have the following dependencies:
References
Summary
In this tutorial we learn how to install sitplus-data package on Debian 9 using different package management tools: apt, apt-get and aptitude.