How To Install python-bugzilla-cli on AlmaLinux 8

In this tutorial we learn how to install python-bugzilla-cli in AlmaLinux 8. python-bugzilla-cli is Command line tool for interacting with Bugzilla

Introduction

In this tutorial we learn how to install python-bugzilla-cli on AlmaLinux 8.

What is python-bugzilla-cli

This package includes the ‘bugzilla’ command-line tool for interacting with bugzilla. Uses the python-bugzilla API

We can use yum or dnf to install python-bugzilla-cli on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python-bugzilla-cli.

Install python-bugzilla-cli on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install python-bugzilla-cli

Install python-bugzilla-cli on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python-bugzilla-cli

How To Uninstall python-bugzilla-cli on AlmaLinux 8

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

sudo dnf remove python-bugzilla-cli

References

Summary

In this tutorial we learn how to install python-bugzilla-cli on AlmaLinux 8 using yum and dnf.