How To Install python-bugzilla-cli on Rocky Linux 8
Introduction
In this tutorial we learn how to install python-bugzilla-cli
on Rocky Linux 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 Rocky Linux 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 Rocky Linux 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 Rocky Linux 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 Rocky Linux 8
To uninstall only the python-bugzilla-cli
package we can use the following command:
sudo dnf remove python-bugzilla-cli
python-bugzilla-cli Package Contents on Rocky Linux 8
/usr/bin/bugzilla
/usr/share/man/man1/bugzilla.1.gz
References
Summary
In this tutorial we learn how to install python-bugzilla-cli
on Rocky Linux 8 using yum and dnf.