How To Install python2-libxc on Rocky Linux 8

In this tutorial we learn how to install python2-libxc on Rocky Linux 8. python2-libxc is Python2 interface to libxc

Introduction

In this tutorial we learn how to install python2-libxc on Rocky Linux 8.

What is python2-libxc

libxc is a library of exchange and correlation functionals. Its purpose is to be used in codes that implement density-functional theory. For the moment, the library includes most of the local density approximations (LDAs), generalized density approximation (GGAs), and meta-GGAs. The library provides values for the energy density and its 1st, 2nd, and (for the LDAs) 3rd derivatives. This package contains the Python2 interface library to libxc.

We can use yum or dnf to install python2-libxc on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python2-libxc.

Install python2-libxc on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python2-libxc using dnf by running the following command:

sudo dnf -y install python2-libxc

Install python2-libxc on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python2-libxc using yum by running the following command:

sudo yum -y install python2-libxc

How To Uninstall python2-libxc on Rocky Linux 8

To uninstall only the python2-libxc package we can use the following command:

sudo dnf remove python2-libxc

python2-libxc Package Contents on Rocky Linux 8

/usr/lib/python2.7/site-packages/pylibxc
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/pylibxc-4.3.4-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/pylibxc/__init__.py
/usr/lib/python2.7/site-packages/pylibxc/__init__.pyc
/usr/lib/python2.7/site-packages/pylibxc/__init__.pyo
/usr/lib/python2.7/site-packages/pylibxc/core.py
/usr/lib/python2.7/site-packages/pylibxc/core.pyc
/usr/lib/python2.7/site-packages/pylibxc/core.pyo
/usr/lib/python2.7/site-packages/pylibxc/flags.py
/usr/lib/python2.7/site-packages/pylibxc/flags.pyc
/usr/lib/python2.7/site-packages/pylibxc/flags.pyo
/usr/lib/python2.7/site-packages/pylibxc/functional.py
/usr/lib/python2.7/site-packages/pylibxc/functional.pyc
/usr/lib/python2.7/site-packages/pylibxc/functional.pyo
/usr/lib/python2.7/site-packages/pylibxc/structs.py
/usr/lib/python2.7/site-packages/pylibxc/structs.pyc
/usr/lib/python2.7/site-packages/pylibxc/structs.pyo
/usr/lib/python2.7/site-packages/pylibxc/util.py
/usr/lib/python2.7/site-packages/pylibxc/util.pyc
/usr/lib/python2.7/site-packages/pylibxc/util.pyo
/usr/lib/python2.7/site-packages/pylibxc/version.py
/usr/lib/python2.7/site-packages/pylibxc/version.pyc
/usr/lib/python2.7/site-packages/pylibxc/version.pyo

References

Summary

In this tutorial we learn how to install python2-libxc on Rocky Linux 8 using yum and dnf.