How To Install python-nose-progressive on CentOS 7

In this tutorial we learn how to install python-nose-progressive on CentOS 7. python-nose-progressive is Nose plugin to show a progress bar and tracebacks during tests

Introduction

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

What is python-nose-progressive

nose-progressive is a nose plugin which displays progress in a stationary progress bar, freeing the rest of the screen (as well as the scrollback buffer) for the compact display of test failures, which it formats beautifully and usefully. It displays failures and errors as soon as they occur and avoids scrolling them off the screen in favor of less useful output. It also offers a number of other human-centric features to speed the debugging process.

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

Install python-nose-progressive 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-nose-progressive using yum by running the following command:

sudo yum -y install python-nose-progressive

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

sudo dnf -y install python-nose-progressive

How To Uninstall python-nose-progressive on CentOS 7

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

sudo dnf remove python-nose-progressive

References

Summary

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