mizuho command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mizuho: command not found
or when using sudo you get the following error message
sudo: mizuho: command not found
Solutions to mizuho: command not found
How To Fix mizuho: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mizuho is provided by ruby-mizuho package.
ruby-mizuho is:
Mizuho is a documentation formatting tool, best suited for small to medium-sized documentation. Mizuho converts Asciidoc input files into nicely outputted HTML, possibly one file per chapter. Multiple templates are supported, so you can write your own.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-mizuho
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-mizuho.
sudo apt -y install ruby-mizuho
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-mizuho
Summary
In this tutorial we learn how to fix mizuho command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.