How To Install libavogadro2-1 on Kali Linux
Introduction
In this tutorial we learn how to install libavogadro2-1
on Kali Linux.
What is libavogadro2-1
libavogadro2-1 is:
Avogadro is a molecular graphics and modelling system targeted at small to medium molecules. It can visualize properties like molecular orbitals or electrostatic potentials and features an intuitive molecular builder.
This package provides the shared libraries.
There are three methods to install libavogadro2-1
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 libavogadro2-1 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libavogadro2-1
using apt-get
by running the following command:
sudo apt-get -y install libavogadro2-1
Install libavogadro2-1 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libavogadro2-1
using apt
by running the following command:
sudo apt -y install libavogadro2-1
Install libavogadro2-1 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 libavogadro2-1
using aptitude
by running the following command:
sudo aptitude -y install libavogadro2-1
How To Uninstall libavogadro2-1 on Kali Linux
To uninstall only the libavogadro2-1
package we can use the following command:
sudo apt-get remove libavogadro2-1
Uninstall libavogadro2-1 And Its Dependencies
To uninstall libavogadro2-1
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libavogadro2-1
Remove libavogadro2-1 Configurations and Data
To remove libavogadro2-1
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libavogadro2-1
Remove libavogadro2-1 configuration, data, and all of its dependencies
We can use the following command to remove libavogadro2-1
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libavogadro2-1
Dependencies
libavogadro2-1 have the following dependencies:
- python3
- libarchive13
- libc6
- libgcc-s1
- libglew2.1
- libglx0
- libhdf5-103-1
- libopengl0
- libqt5concurrent5
- libqt5core5a
- libqt5gui5
- libqt5network5
- libqt5widgets5
- libstdc++6
- libsymspg1
References
Summary
In this tutorial we learn how to install libavogadro2-1
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.