How To Install gabedit on Debian 10
Introduction
In this tutorial we learn how to install gabedit
on Debian 10.
What is gabedit
gabedit is:
Gabedit is a graphical user interface to computational chemistry packages like:
- MPQC
- GAMESS-US
- Gaussian
- Molcas
- Molpro
- Q-Chem
These Ab Initio software packages might run locally or on a remote server (supporting FTP, RSH and SSH). Gabedit can display a variety of calculation results including most major molecular file formats. The advanced “Molecule Builder” allows one to rapidly sketch in molecules and examine them in 3D. Graphics can further be exported to various formats, including animations.
There are three methods to install gabedit
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install gabedit Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gabedit
using apt-get
by running the following command:
sudo apt-get -y install gabedit
Install gabedit Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gabedit
using apt
by running the following command:
sudo apt -y install gabedit
Install gabedit Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install gabedit
using aptitude
by running the following command:
sudo aptitude -y install gabedit
How To Uninstall gabedit on Debian 10
To uninstall only the gabedit
package we can use the following command:
sudo apt-get remove gabedit
Uninstall gabedit And Its Dependencies
To uninstall gabedit
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove gabedit
Remove gabedit Configurations and Data
To remove gabedit
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge gabedit
Remove gabedit configuration, data, and all of its dependencies
We can use the following command to remove gabedit
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gabedit
Dependencies
gabedit have the following dependencies:
- openbabel
- libc6
- libcairo2
- libgdk-pixbuf2.0-0
- libgl1
- libgl2ps1.4
- libglib2.0-0
- libglu1-mesa
- libgomp1
- libgtk2.0-0
- libgtkglext1
- libpango-1.0-0
- libpangocairo-1.0-0
References
Summary
In this tutorial we learn how to install gabedit
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.