hikidoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hikidoc: command not found
or when using sudo you get the following error message
sudo: hikidoc: command not found
Solutions to hikidoc: command not found
How To Fix hikidoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hikidoc is provided by ruby-hikidoc package.
ruby-hikidoc is:
‘HikiDoc’ is a text-to-HTML conversion tool for web writers. HikiDoc allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML (or XHTML).
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-hikidoc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-hikidoc.
sudo apt -y install ruby-hikidoc
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-hikidoc
Summary
In this tutorial we learn how to fix hikidoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.