How To Install libtrilinos-teko-dev on Debian 9
Introduction
In this tutorial we learn how to install libtrilinos-teko-dev
on Debian 9.
What is libtrilinos-teko-dev
libtrilinos-teko-dev is:
Teko is a package for development and implementation of block preconditioners. This includes support for manipulation and setup of block operators. Furthermore tools exist to support decomposition of a fully coupled operator. Additionally, facilities that allow the construction of approximate inverse operators using the full complement of available preconditioners and solvers are available in Teko. Finally, a small number of generic block preconditioners has been implemented in Teko, including block Jacobi, and block Gauss-Seidel. For the Navier-Stokes equation, Teko has implementations of SIMPLE, PCD and LSC. For details on these methods see Stabilization and Scalable Block Preconditioning for the Navier-Stokes Equations and the references therein.
This package provides headers.
There are three methods to install libtrilinos-teko-dev
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 libtrilinos-teko-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libtrilinos-teko-dev
using apt-get
by running the following command:
sudo apt-get -y install libtrilinos-teko-dev
Install libtrilinos-teko-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtrilinos-teko-dev
using apt
by running the following command:
sudo apt -y install libtrilinos-teko-dev
Install libtrilinos-teko-dev 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 libtrilinos-teko-dev
using aptitude
by running the following command:
sudo aptitude -y install libtrilinos-teko-dev
How To Uninstall libtrilinos-teko-dev on Debian 9
To uninstall only the libtrilinos-teko-dev
package we can use the following command:
sudo apt-get remove libtrilinos-teko-dev
Uninstall libtrilinos-teko-dev And Its Dependencies
To uninstall libtrilinos-teko-dev
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libtrilinos-teko-dev
Remove libtrilinos-teko-dev Configurations and Data
To remove libtrilinos-teko-dev
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libtrilinos-teko-dev
Remove libtrilinos-teko-dev configuration, data, and all of its dependencies
We can use the following command to remove libtrilinos-teko-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtrilinos-teko-dev
Dependencies
libtrilinos-teko-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libtrilinos-teko-dev
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.