bugz command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bugz: command not found
or when using sudo you get the following error message
sudo: bugz: command not found
Solutions to bugz: command not found
How To Fix bugz: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bugz is provided by bugz package.
bugz is:
PyBugz is a Python and command line interface to Bugzilla, allowing the user to quickly search, isolate and contribute to projects using the Bugzilla bug tracker. Developers can easily extract attachments and close bugs all from the comfort of the command line.
This package provides both a fully-working CLI application as well as a Python module to be reused by other projects.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bugz
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bugz.
sudo apt -y install bugz
Or if you have aptitude installed you can use the following command.
sudo aptitude install bugz
Summary
In this tutorial we learn how to fix bugz command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.