How To Install pybugz on CentOS 7

In this tutorial we learn how to install pybugz on CentOS 7. pybugz is Command line interface for Bugzilla written in Python

Introduction

In this tutorial we learn how to install pybugz on CentOS 7.

What is pybugz

Pybugz was conceived as a tool to speed up the work-flow for Gentoo Linux contributors when dealing with bugs using Bugzilla. By avoiding the clunky web interface, the user can search, isolate and contribute to the project very quickly. Developers alike can easily extract attachments and close bugs comfortably from the command line.

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

Install pybugz on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install pybugz using yum by running the following command:

sudo yum -y install pybugz

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

sudo dnf -y install pybugz

How To Uninstall pybugz on CentOS 7

To uninstall only the pybugz package we can use the following command:

sudo dnf remove pybugz

References

Summary

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