How To Install ergo on CentOS 7

In this tutorial we learn how to install ergo on CentOS 7. ergo is A program for large-scale self-consistent field calculations

Introduction

In this tutorial we learn how to install ergo on CentOS 7.

What is ergo

Ergo is a quantum chemistry program for large-scale self-consistent field calculations. Key features of the Ergo program * Performs electronic structure calculations using Hartree-Fock and Kohn-Sham density functional theory. * Uses Gaussian basis sets. * Both core and valence electrons are included in the calculations. * Both restricted and unrestricted models are implemented for energy calculations. * Implements a broad range of both pure and hybrid Kohn-Sham density functionals. * Employs modern linear scaling techniques like fast multipole methods, hierarchic sparse matrix algebra, density matrix purification, and efficient integral screening. * Linear scaling is achieved not only in terms of CPU usage but also memory utilization. * The time consuming parts of the code are currently parallelized using the shared-memory paradigm. Linear response calculations of polarizabilities and excitation energies are possible for the restricted reference density, although complete linear scaling is in the current implementation not achieved since full dense matrices are still used in parts of the linear response implementation.

We can use yum or dnf to install ergo on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ergo.

Install ergo on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ergo using yum by running the following command:

sudo yum -y install ergo

Install ergo 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 ergo using dnf by running the following command:

sudo dnf -y install ergo

How To Uninstall ergo on CentOS 7

To uninstall only the ergo package we can use the following command:

sudo dnf remove ergo

References

Summary

In this tutorial we learn how to install ergo on CentOS 7 using yum and dnf.