How To Install python3-gyoto on Kali Linux
Introduction
In this tutorial we learn how to install python3-gyoto
on Kali Linux.
What is python3-gyoto
python3-gyoto is:
Gyoto aims at providing a framework for computing orbits and ray-traced images in General relativity.
This package also includes a Gyoto plug-in allowing to write new Gyoto objects in the Python 3 language.
This package provides an extension for the Python 3 programming language exposing the Gyoto facilities. It allows using Gyoto interactively from the Python 3 prompt or running complex Gyoto scripts.
Producing videos requires the python3-opencv package.
There are three methods to install python3-gyoto
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-gyoto 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-gyoto
using apt-get
by running the following command:
sudo apt-get -y install python3-gyoto
Install python3-gyoto Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python3-gyoto
using apt
by running the following command:
sudo apt -y install python3-gyoto
Install python3-gyoto 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-gyoto
using aptitude
by running the following command:
sudo aptitude -y install python3-gyoto
How To Uninstall python3-gyoto on Kali Linux
To uninstall only the python3-gyoto
package we can use the following command:
sudo apt-get remove python3-gyoto
Uninstall python3-gyoto And Its Dependencies
To uninstall python3-gyoto
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove python3-gyoto
Remove python3-gyoto Configurations and Data
To remove python3-gyoto
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge python3-gyoto
Remove python3-gyoto configuration, data, and all of its dependencies
We can use the following command to remove python3-gyoto
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python3-gyoto
Dependencies
python3-gyoto have the following dependencies:
References
Summary
In this tutorial we learn how to install python3-gyoto
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.