How To Install python-openid on CentOS 7

In this tutorial we learn how to install python-openid on CentOS 7. python-openid is Python OpenID libraries

Introduction

In this tutorial we learn how to install python-openid on CentOS 7.

What is python-openid

The OpenID library with batteries included. Features of the 2.x.x series include * Refined and easy-to-use API. * Extensive documentation. * Many storage implemetations including file-based, sqlite, postgresql, and mysql. * Simple examples to help you get started. * Licensed under the Apache Software License. * Includes a Simple Registration API * Versions 1.x.x supports protocol version 1; versions 2.x.x support both major OpenID protocol versions transparently

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

Install python-openid on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install python-openid

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

sudo dnf -y install python-openid

How To Uninstall python-openid on CentOS 7

To uninstall only the python-openid package we can use the following command:

sudo dnf remove python-openid

References

Summary

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