How To Install mia-tools-doc on Debian 10
Introduction
In this tutorial we learn how to install mia-tools-doc
on Debian 10.
What is mia-tools-doc
mia-tools-doc is:
Cross referenced documentation of the command line tools and plug-ins that are provided by the MIA gray scale image processing tool chain. These lines tools to provide the means to run general purpose image processing tasks on 2D and 3D gray scale images, and basic operations on triangular meshes interactively from the command line. Supported image processing algorithms are image filtering, combining, image registration, motion compensation for image series, and the estimation of various statistics over images.
There are three methods to install mia-tools-doc
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 mia-tools-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 mia-tools-doc
using apt-get
by running the following command:
sudo apt-get -y install mia-tools-doc
Install mia-tools-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install mia-tools-doc
using apt
by running the following command:
sudo apt -y install mia-tools-doc
Install mia-tools-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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install mia-tools-doc
using aptitude
by running the following command:
sudo aptitude -y install mia-tools-doc
How To Uninstall mia-tools-doc on Debian 10
To uninstall only the mia-tools-doc
package we can use the following command:
sudo apt-get remove mia-tools-doc
Uninstall mia-tools-doc And Its Dependencies
To uninstall mia-tools-doc
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove mia-tools-doc
Remove mia-tools-doc Configurations and Data
To remove mia-tools-doc
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge mia-tools-doc
Remove mia-tools-doc configuration, data, and all of its dependencies
We can use the following command to remove mia-tools-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mia-tools-doc
Dependencies
mia-tools-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install mia-tools-doc
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.