How To Install python36-humanfriendly on CentOS 7

In this tutorial we learn how to install python36-humanfriendly on CentOS 7. python36-humanfriendly is Documentation for the ‘humanfriendly’ Python module

Introduction

In this tutorial we learn how to install python36-humanfriendly on CentOS 7.

What is python36-humanfriendly

The functions and classes in the humanfriendly package can be used to make text interfaces more user friendly. Some example features - Parsing and formatting numbers, file sizes, pathnames and timespans in simple, human friendly formats. - Easy to use timers for long running operations, with human friendly formatting of the resulting timespans. - Prompting the user to select a choice from a list of options by typing the option’s number or a unique substring of the option. - Terminal interaction including text styling (ANSI escape sequences), user friendly rendering of usage messages and querying the terminal for its size.

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

Install python36-humanfriendly on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install python36-humanfriendly

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

sudo dnf -y install python36-humanfriendly

How To Uninstall python36-humanfriendly on CentOS 7

To uninstall only the python36-humanfriendly package we can use the following command:

sudo dnf remove python36-humanfriendly

References

Summary

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