How To Install pluto-lunar on Kali Linux
Introduction
In this tutorial we learn how to install pluto-lunar
on Kali Linux.
What is pluto-lunar
pluto-lunar is:
Basic astronomical functions for solar system ephemerides, time systems, coordinate systems, etc. This includes some utilities based on these functions, such as a calendar computer and a utility to numerically integrate asteroid orbits.
There are three methods to install pluto-lunar
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 pluto-lunar Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install pluto-lunar
using apt-get
by running the following command:
sudo apt-get -y install pluto-lunar
Install pluto-lunar Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install pluto-lunar
using apt
by running the following command:
sudo apt -y install pluto-lunar
Install pluto-lunar 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 pluto-lunar
using aptitude
by running the following command:
sudo aptitude -y install pluto-lunar
How To Uninstall pluto-lunar on Kali Linux
To uninstall only the pluto-lunar
package we can use the following command:
sudo apt-get remove pluto-lunar
Uninstall pluto-lunar And Its Dependencies
To uninstall pluto-lunar
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove pluto-lunar
Remove pluto-lunar Configurations and Data
To remove pluto-lunar
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge pluto-lunar
Remove pluto-lunar configuration, data, and all of its dependencies
We can use the following command to remove pluto-lunar
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pluto-lunar
Dependencies
pluto-lunar have the following dependencies:
References
Summary
In this tutorial we learn how to install pluto-lunar
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.