rougify command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rougify: command not found
or when using sudo you get the following error message
sudo: rougify: command not found
Solutions to rougify: command not found
How To Fix rougify: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rougify is provided by ruby-rouge package.
ruby-rouge is:
Rouge is a pure-Ruby syntax highlighter. It can highlight over 60 languages, and output HTML or ANSI 256-color text. Its HTML output is compatible with stylesheets designed for pygments.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-rouge
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-rouge.
sudo apt -y install ruby-rouge
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-rouge
Summary
In this tutorial we learn how to fix rougify command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.