doxywizard command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
doxywizard: command not found
or when using sudo you get the following error message
sudo: doxywizard: command not found
Solutions to doxywizard: command not found
How To Fix doxywizard: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu doxywizard is provided by doxygen-gui package.
doxygen-gui is:
Doxygen is a documentation system for C, C++, Java, Objective-C, Python, IDL and to some extent PHP, C#, and D. It can generate an on-line class browser (in HTML) and/or an off-line reference manual (in LaTeX) from a set of documented source files. There is also support for generating man pages and for converting the generated output into Postscript, hyperlinked PDF or compressed HTML. The documentation is extracted directly from the sources.
This package contains doxywizard, a GUI configuration tool for doxygen.
To fix this problem, we can install more using the command below.
sudo apt-get -y install doxygen-gui
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install doxygen-gui.
sudo apt -y install doxygen-gui
Or if you have aptitude installed you can use the following command.
sudo aptitude install doxygen-gui
Summary
In this tutorial we learn how to fix doxywizard command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.