How To Install libgnudatalanguage0 on Kali Linux
Introduction
In this tutorial we learn how to install libgnudatalanguage0 on Kali Linux.
What is libgnudatalanguage0
libgnudatalanguage0 is:
GNU Data Language (GDL) is a free IDL (Interactive Data Language) compatible incremental compiler. It has full syntax compatibility with IDL 7.1. IDL is a registered trademark of ITT Visual Information Solutions.
This package contains the shared library which is used by the different frontends (gdl binary, Python package).
There are three methods to install libgnudatalanguage0 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 libgnudatalanguage0 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libgnudatalanguage0 using apt-get by running the following command:
sudo apt-get -y install libgnudatalanguage0Install libgnudatalanguage0 Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libgnudatalanguage0 using apt by running the following command:
sudo apt -y install libgnudatalanguage0Install libgnudatalanguage0 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 libgnudatalanguage0 using aptitude by running the following command:
sudo aptitude -y install libgnudatalanguage0How To Uninstall libgnudatalanguage0 on Kali Linux
To uninstall only the libgnudatalanguage0 package we can use the following command:
sudo apt-get remove libgnudatalanguage0Uninstall libgnudatalanguage0 And Its Dependencies
To uninstall libgnudatalanguage0 and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgnudatalanguage0Remove libgnudatalanguage0 Configurations and Data
To remove libgnudatalanguage0 configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgnudatalanguage0Remove libgnudatalanguage0 configuration, data, and all of its dependencies
We can use the following command to remove libgnudatalanguage0 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgnudatalanguage0Dependencies
libgnudatalanguage0 have the following dependencies:
- libc6
- libeccodes0
- libfftw3-double3
- libfftw3-single3
- libgcc-s1
- libgeotiff5
- libglpk40
- libgomp1
- libgraphicsmagick++-q16-12
- libgsl25
- libhdf4-0-alt
- libnetcdf18
- libplplot17
- libplplotcxx15
- libpng16-16
- libproj19
- libpython3.9
- libreadline8
- libstdc++6
- libtiff5
- libtirpc3
- libudunits2-0
- libwxbase3.0-0v5
- libwxgtk3.0-gtk3-0v5
- libx11-6
- pslib1
- zlib1g
References
Summary
In this tutorial we learn how to install libgnudatalanguage0 package on Kali Linux using different package management tools: apt, apt-get and aptitude.