qbrew command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qbrew: command not found
or when using sudo you get the following error message
sudo: qbrew: command not found
Solutions to qbrew: command not found
How To Fix qbrew: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qbrew is provided by qbrew package.
qbrew is:
QBrew is a recipe calculator for homebrewed beers. It uses Qt for creating its graphical user interface and provides facilities for creating own beer recipes. It even has a manual describing how to brew your first beer yourself!
To fix this problem, we can install more using the command below.
sudo apt-get -y install qbrew
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qbrew.
sudo apt -y install qbrew
Or if you have aptitude installed you can use the following command.
sudo aptitude install qbrew
Summary
In this tutorial we learn how to fix qbrew command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.