How To Install python3-scikit-fmm on Kali Linux
Introduction
In this tutorial we learn how to install python3-scikit-fmm
on Kali Linux.
What is python3-scikit-fmm
python3-scikit-fmm is:
This module implements the fast marching method, used to model the evolution of boundaries and interfaces in a variety of application areas. More specifically, the fast marching method is a numerical technique for finding approximate solutions to boundary value problems of the Eikonal equation:
F(x) | grad T(x) | = 1
Typically, such a problem describes the evolution of a closed curve as a function of time T with speed F(x)>0 in the normal direction at a point x on the curve. The speed function is specified, and the time at which the contour crosses a point x is obtained by solving the equation.
scikit-fmm provides functions to calculate the signed distance and travel time to an interface described by the zero contour of the input array phi.
There are three methods to install python3-scikit-fmm
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 python3-scikit-fmm Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install python3-scikit-fmm
using apt-get
by running the following command:
sudo apt-get -y install python3-scikit-fmm
Install python3-scikit-fmm Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-scikit-fmm
using apt
by running the following command:
sudo apt -y install python3-scikit-fmm
Install python3-scikit-fmm 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 python3-scikit-fmm
using aptitude
by running the following command:
sudo aptitude -y install python3-scikit-fmm
How To Uninstall python3-scikit-fmm on Kali Linux
To uninstall only the python3-scikit-fmm
package we can use the following command:
sudo apt-get remove python3-scikit-fmm
Uninstall python3-scikit-fmm And Its Dependencies
To uninstall python3-scikit-fmm
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove python3-scikit-fmm
Remove python3-scikit-fmm Configurations and Data
To remove python3-scikit-fmm
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge python3-scikit-fmm
Remove python3-scikit-fmm configuration, data, and all of its dependencies
We can use the following command to remove python3-scikit-fmm
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-scikit-fmm
Dependencies
python3-scikit-fmm have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-scikit-fmm
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.