How To Install libderiv on Fedora 34
Introduction
In this tutorial we learn how to install libderiv
on Fedora 34.
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. libderiv 1.2.1 13.fc34 x86_64 10 M libint-1.2.1-13.fc34.src.rpm fedora A library for computing derivatives of electron repulsion integrals http LGPLv3 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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libderiv.
Install libderiv on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libderiv
using dnf
by running the following command:
sudo dnf -y install libderiv
Install libderiv on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libderiv
using yum
by running the following command:
sudo yum -y install libderiv
How To Uninstall libderiv on Fedora 34
To uninstall only the libderiv
package we can use the following command:
sudo dnf remove libderiv
libderiv Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/13
/usr/lib/.build-id/13/48f69210ed158061bc0a70be92d12961ba43bc
/usr/lib/libderiv-stable.so.1
/usr/lib/libderiv-stable.so.1.0.0
/usr/share/doc/libderiv
/usr/share/doc/libderiv/COPYING
/usr/share/doc/libderiv/COPYING.LESSER
/usr/share/doc/libderiv/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/8d/33fb8eddb7890e879cf7be25012f91d217e0fd
/usr/lib64/libderiv-stable.so.1
/usr/lib64/libderiv-stable.so.1.0.0
/usr/share/doc/libderiv
/usr/share/doc/libderiv/COPYING
/usr/share/doc/libderiv/COPYING.LESSER
/usr/share/doc/libderiv/LICENSE
References
- [libderiv website](http://sourceforge.net/p/libint http://sourceforge.net/p/libint)
Summary
In this tutorial we learn how to install libderiv
on Fedora 34 using yum and dnf.