How To Install python3-ciso8601 on Rocky Linux 8

In this tutorial we learn how to install python3-ciso8601 on Rocky Linux 8. python3-ciso8601 is Fast ISO8601 date time parser

Introduction

In this tutorial we learn how to install python3-ciso8601 on Rocky Linux 8.

What is python3-ciso8601

ciso8601 converts ISO 8601 or RFC 3339 date time strings into Python datetime objects. Since it’s written as a C module, it is much faster than other Python libraries.

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

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

sudo dnf -y install python3-ciso8601

Install python3-ciso8601 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 python3-ciso8601 using yum by running the following command:

sudo yum -y install python3-ciso8601

How To Uninstall python3-ciso8601 on Rocky Linux 8

To uninstall only the python3-ciso8601 package we can use the following command:

sudo dnf remove python3-ciso8601

python3-ciso8601 Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/7c9820eea375b0eac22e66e61b89dfc21e00ae
/usr/lib64/python3.6/site-packages/ciso8601
/usr/lib64/python3.6/site-packages/ciso8601-2.1.3-py3.6.egg-info
/usr/lib64/python3.6/site-packages/ciso8601-2.1.3-py3.6.egg-info/PKG-INFO
/usr/lib64/python3.6/site-packages/ciso8601-2.1.3-py3.6.egg-info/SOURCES.txt
/usr/lib64/python3.6/site-packages/ciso8601-2.1.3-py3.6.egg-info/dependency_links.txt
/usr/lib64/python3.6/site-packages/ciso8601-2.1.3-py3.6.egg-info/top_level.txt
/usr/lib64/python3.6/site-packages/ciso8601.cpython-36m-x86_64-linux-gnu.so
/usr/lib64/python3.6/site-packages/ciso8601/__init__.pyi
/usr/lib64/python3.6/site-packages/ciso8601/py.typed
/usr/share/doc/python3-ciso8601
/usr/share/doc/python3-ciso8601/CHANGELOG.md
/usr/share/doc/python3-ciso8601/README.rst
/usr/share/licenses/python3-ciso8601
/usr/share/licenses/python3-ciso8601/LICENSE

References

Summary

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