brewtarget command not found

In this troubleshooting guide we learn how to fix brewtarget command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

brewtarget: command not found

or when using sudo you get the following error message

sudo: brewtarget: command not found

Solutions to brewtarget: command not found

How To Fix brewtarget: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu brewtarget is provided by brewtarget package.

brewtarget is:

Brewtarget is a calculator for brewing beer. It is a Qt-based program which allows you to create recipes from a database of ingredients. It calculates all the important parameters, helps you with mash temperatures, and just makes the process of recipe formulation much easier.

To fix this problem, we can install more using the command below.

sudo apt-get -y install brewtarget

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install brewtarget.

sudo apt -y install brewtarget

Or if you have aptitude installed you can use the following command.

sudo aptitude install brewtarget

Summary

In this tutorial we learn how to fix brewtarget command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.