How To Install pybugz on Fedora 36
Introduction
In this tutorial we learn how to install pybugz
on Fedora 36.
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 Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install pybugz.
Install pybugz on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install pybugz
using dnf
by running the following command:
sudo dnf -y install pybugz
Install pybugz on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install pybugz
using yum
by running the following command:
sudo yum -y install pybugz
How To Uninstall pybugz on Fedora 36
To uninstall only the pybugz
package we can use the following command:
sudo dnf remove pybugz
pybugz Package Contents on Fedora 36
/usr/bin/bugz
/usr/lib/python3.10/site-packages/bugz
/usr/lib/python3.10/site-packages/bugz/__init__.py
/usr/lib/python3.10/site-packages/bugz/__pycache__
/usr/lib/python3.10/site-packages/bugz/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/cli.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/cli.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/cli_argparser.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/cli_argparser.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/configfile.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/configfile.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/definitions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/definitions.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/exceptions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/exceptions.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/log.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/log.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/settings.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/settings.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/utils.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bugz/__pycache__/utils.cpython-310.pyc
/usr/lib/python3.10/site-packages/bugz/cli.py
/usr/lib/python3.10/site-packages/bugz/cli_argparser.py
/usr/lib/python3.10/site-packages/bugz/configfile.py
/usr/lib/python3.10/site-packages/bugz/definitions.py
/usr/lib/python3.10/site-packages/bugz/exceptions.py
/usr/lib/python3.10/site-packages/bugz/log.py
/usr/lib/python3.10/site-packages/bugz/settings.py
/usr/lib/python3.10/site-packages/bugz/utils.py
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info/entry_points.txt
/usr/lib/python3.10/site-packages/pybugz-0.14-py3.10.egg-info/top_level.txt
/usr/share/bash-completion/completions/bugz
/usr/share/doc/pybugz
/usr/share/doc/pybugz/LICENSE
/usr/share/doc/pybugz/README
/usr/share/man/man1/bugz.1.gz
/usr/share/man/man5/pybugz.d.5.gz
/usr/share/pybugz.d
/usr/share/pybugz.d/busybox.conf
/usr/share/pybugz.d/default.conf
/usr/share/pybugz.d/freebsd.conf
/usr/share/pybugz.d/freedesktop.conf
/usr/share/pybugz.d/gentoo.conf
/usr/share/pybugz.d/gnome.conf
/usr/share/pybugz.d/kernel.conf
/usr/share/pybugz.d/libav.conf
/usr/share/pybugz.d/llvm.conf
/usr/share/pybugz.d/mozilla.conf
/usr/share/pybugz.d/redhat.conf
References
Summary
In this tutorial we learn how to install pybugz
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).