adabrowse command not found

In this troubleshooting guide we learn how to fix adabrowse command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

adabrowse: command not found

or when using sudo you get the following error message

sudo: adabrowse: command not found

Solutions to adabrowse: command not found

How To Fix adabrowse: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu adabrowse is provided by adabrowse package.

adabrowse is:

AdaBrowse is a javadoc-like HTML generator for Ada 95 library unit specifications. It can also generate XML output; a DTD is included in the distribution.

To fix this problem, we can install more using the command below.

sudo apt-get -y install adabrowse

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install adabrowse.

sudo apt -y install adabrowse

Or if you have aptitude installed you can use the following command.

sudo aptitude install adabrowse

Summary

In this tutorial we learn how to fix adabrowse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.