How To Install glueviz on Kali Linux
Introduction
In this tutorial we learn how to install glueviz on Kali Linux.
What is glueviz
glueviz is:
Glue is a Python project to link visualizations of scientific datasets across many files. Some of its features are:
- Interactive, linked statistical graphics of multiple files.
- Support for many file formats including common image formats, ascii tables, astronomical image and table formats (fits, vot, ipac), and HDF5. Custom data loaders can also be easily added.
- Highly scriptable and extendable.
There are three methods to install glueviz 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 glueviz Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install glueviz using apt-get by running the following command:
sudo apt-get -y install gluevizInstall glueviz Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install glueviz using apt by running the following command:
sudo apt -y install gluevizInstall glueviz 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 glueviz using aptitude by running the following command:
sudo aptitude -y install gluevizHow To Uninstall glueviz on Kali Linux
To uninstall only the glueviz package we can use the following command:
sudo apt-get remove gluevizUninstall glueviz And Its Dependencies
To uninstall glueviz and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gluevizRemove glueviz Configurations and Data
To remove glueviz configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gluevizRemove glueviz configuration, data, and all of its dependencies
We can use the following command to remove glueviz configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gluevizDependencies
glueviz have the following dependencies:
References
Summary
In this tutorial we learn how to install glueviz package on Kali Linux using different package management tools: apt, apt-get and aptitude.