How To Install libderiv on CentOS 7
Introduction
In this tutorial we learn how to install libderiv on CentOS 7.
What is libderiv
libderiv computes first and second derivatives of ERIs with respect to the coordinates of the basis function origin. This type of integrals are also very common in electronic structure theory, where they appear in analytic gradient expressions. The derivatives are typically used in the calculation of forces.
We can use yum or dnf to install libderiv on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libderiv.
Install libderiv on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install libderiv using yum by running the following command:
sudo yum -y install libderiv
Install libderiv on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install libderiv using dnf by running the following command:
sudo dnf -y install libderiv
How To Uninstall libderiv on CentOS 7
To uninstall only the libderiv package we can use the following command:
sudo dnf remove libderiv
References
Summary
In this tutorial we learn how to install libderiv on CentOS 7 using yum and dnf.