bacon command not found

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

Introduction

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

bacon: command not found

or when using sudo you get the following error message

sudo: bacon: command not found

Solutions to bacon: command not found

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

In Ubuntu bacon is provided by ruby-bacon package.

ruby-bacon is:

Bacon is a small RSpec clone weighing less than 350 line of code, but nevertheless providing all essential features.

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

sudo apt-get -y install ruby-bacon

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

You can also use apt command to install ruby-bacon.

sudo apt -y install ruby-bacon

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

sudo aptitude install ruby-bacon

Summary

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