monodoc-http command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
monodoc-http: command not found
or when using sudo you get the following error message
sudo: monodoc-http: command not found
Solutions to monodoc-http: command not found
How To Fix monodoc-http: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu monodoc-http is provided by monodoc-http package.
monodoc-http is:
The MonoDoc Project is the documentation framework of the Mono project which provides detailed API documentation for all Mono components and the Mono CLI implementation.
This package contains ASP.NET scripts which allow viewing the Mono documentation via an ASP.NET enabled webserver with a standard http webbrowser.
To fix this problem, we can install more using the command below.
sudo apt-get -y install monodoc-http
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install monodoc-http.
sudo apt -y install monodoc-http
Or if you have aptitude installed you can use the following command.
sudo aptitude install monodoc-http
Summary
In this tutorial we learn how to fix monodoc-http command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.