How To Install inhomog on Kali Linux
Introduction
In this tutorial we learn how to install inhomog on Kali Linux.
What is inhomog
inhomog is:
The inhomog library calculates average cosmological expansion. This particular package contains an example front end program that uses the biscale_partition routines of the inhomog library, illustrating effective scale factor evolution in a universe with a T^3 spatial section that is divided into two complementary domains. The inhomog library provides Raychaudhuri integration of cosmological domain-wise average scale factor evolution using an analytical formula for kinematical backreaction Q_D evolution. The library routine lib/Omega_D_precalc.c is callable by RAMSES using ramses-scalav.
You may use this front-end program for command-line investigation of the role of virialisation as a potential replacement for dark energy (see Roukema 2017, arXiv:1706.06179).
There are three methods to install inhomog 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 inhomog Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install inhomog using apt-get by running the following command:
sudo apt-get -y install inhomogInstall inhomog Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install inhomog using apt by running the following command:
sudo apt -y install inhomogInstall inhomog 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 updateAfter updating apt database, We can install inhomog using aptitude by running the following command:
sudo aptitude -y install inhomogHow To Uninstall inhomog on Kali Linux
To uninstall only the inhomog package we can use the following command:
sudo apt-get remove inhomogUninstall inhomog And Its Dependencies
To uninstall inhomog and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove inhomogRemove inhomog Configurations and Data
To remove inhomog configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge inhomogRemove inhomog configuration, data, and all of its dependencies
We can use the following command to remove inhomog configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge inhomogDependencies
inhomog have the following dependencies:
References
Summary
In this tutorial we learn how to install inhomog package on Kali Linux using different package management tools: apt, apt-get and aptitude.