How To Install libgpiv-mpi3 on Kali Linux
Introduction
In this tutorial we learn how to install libgpiv-mpi3
on Kali Linux.
What is libgpiv-mpi3
libgpiv-mpi3 is:
This library contains functions for evaluating images from a fluid flow by means of Particle Image Velocimetry (PIV).
PIV is a way to film the wind or liquid flows. It uses a sequence of at least two images that are recorded with a well controlled separation time in-between. Tracer particles that are resident in the fluid may be illuminated by a light source, mostly a laser, that has been re-shaped into a sheet of light. In this way, the average displacement and the deformation of the image texture is obtained. Applying this analyses on small samples of the images on a (rectangular) grid results into an instantaneous velocity field of the fluid flow. PIV may also be applied for other purposes, like deformations and vibrations of solid surfaces.
This package contains the parallelized library using Message Passing Interface (MPI).
There are three methods to install libgpiv-mpi3
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libgpiv-mpi3 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libgpiv-mpi3
using apt-get
by running the following command:
sudo apt-get -y install libgpiv-mpi3
Install libgpiv-mpi3 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libgpiv-mpi3
using apt
by running the following command:
sudo apt -y install libgpiv-mpi3
Install libgpiv-mpi3 Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libgpiv-mpi3
using aptitude
by running the following command:
sudo aptitude -y install libgpiv-mpi3
How To Uninstall libgpiv-mpi3 on Kali Linux
To uninstall only the libgpiv-mpi3
package we can use the following command:
sudo apt-get remove libgpiv-mpi3
Uninstall libgpiv-mpi3 And Its Dependencies
To uninstall libgpiv-mpi3
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgpiv-mpi3
Remove libgpiv-mpi3 Configurations and Data
To remove libgpiv-mpi3
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgpiv-mpi3
Remove libgpiv-mpi3 configuration, data, and all of its dependencies
We can use the following command to remove libgpiv-mpi3
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgpiv-mpi3
Dependencies
libgpiv-mpi3 have the following dependencies:
References
Summary
In this tutorial we learn how to install libgpiv-mpi3
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.