microhope-doc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
microhope-doc: command not found
or when using sudo you get the following error message
sudo: microhope-doc: command not found
Solutions to microhope-doc: command not found
How To Fix microhope-doc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu microhope-doc is provided by microhope package.
microhope is:
This package provides a set of example programs to drive an ATmega32 microcontroller, together with a tutorqial explaining how to compile them, upload them to the microcontroller, and how to make simple and more complicated modifications. It is meant to be used with the “microhope” board which makes it easy to upload code to the microcontroller through a USB link.
In addition to examples there is a library to drive all of the peripherals available on the “microhope” board: LED, LCD display, ADC connected to sensors.
A Graphic User Interface is provided too.
To fix this problem, we can install more using the command below.
sudo apt-get -y install microhope
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install microhope.
sudo apt -y install microhope
Or if you have aptitude installed you can use the following command.
sudo aptitude install microhope
Summary
In this tutorial we learn how to fix microhope-doc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.