How To Install gausssum on Kali Linux

In this tutorial we learn how to install gausssum on Kali Linux. gausssum is parse and display Gaussian, GAMESS, and etcs output

Introduction

In this tutorial we learn how to install gausssum on Kali Linux.

What is gausssum

gausssum is:

GaussSum parses the output files of ADF, GAMESS, GAMESS-UK, Gaussian, Jaguar and PC GAMESS calculations to extract useful information.

GaussSum uses GNUPlot to display the progress of geometry optimisations, density of states spectrum, UV-VIS spectra, IR spectra, Raman spectra, and electron density difference maps. It can also display all lines containing an arbitrary phrase and more.

There are three methods to install gausssum 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 gausssum Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install gausssum using apt-get by running the following command:

sudo apt-get -y install gausssum

Install gausssum Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gausssum using apt by running the following command:

sudo apt -y install gausssum

Install gausssum 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 gausssum using aptitude by running the following command:

sudo aptitude -y install gausssum

How To Uninstall gausssum on Kali Linux

To uninstall only the gausssum package we can use the following command:

sudo apt-get remove gausssum

Uninstall gausssum And Its Dependencies

To uninstall gausssum and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove gausssum

Remove gausssum Configurations and Data

To remove gausssum configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge gausssum

Remove gausssum configuration, data, and all of its dependencies

We can use the following command to remove gausssum configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gausssum

Dependencies

gausssum have the following dependencies:

References

Summary

In this tutorial we learn how to install gausssum package on Kali Linux using different package management tools: apt, apt-get and aptitude.