bluefeather command not found

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

Introduction

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

bluefeather: command not found

or when using sudo you get the following error message

sudo: bluefeather: command not found

Solutions to bluefeather: command not found

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

In Ubuntu bluefeather is provided by ruby-bluefeather package.

ruby-bluefeather is:

BlueFeather is software for converting text written by extended Markdown like PHP Markdown Extra to html. It is pair of command-line tool and pure Ruby library.

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

sudo apt-get -y install ruby-bluefeather

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

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

sudo apt -y install ruby-bluefeather

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

sudo aptitude install ruby-bluefeather

Summary

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