doxyparse command not found

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

Introduction

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

doxyparse: command not found

or when using sudo you get the following error message

sudo: doxyparse: command not found

Solutions to doxyparse: command not found

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

In Ubuntu doxyparse is provided by doxygen-doxyparse package.

doxygen-doxyparse is:

Doxygen is a documentation system for C, C++, Java, Objective-C, Python, IDL and to some extent PHP, C#, and D. Doxyparse builds on doxygen’s great source code parsing infrastructure and provides a command-line tool that can be used to obtain information from source code, such as:

  • which functions/methods and variables/attributes a module/class contains
  • which functions/methods calls/uses which functions/methods/variables
  • etc

doxyparses’s main goal is to be used by higher-level source code analysis tools.

This package contains doxyparse binary, a source code parser based on Doxygen

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

sudo apt-get -y install doxygen-doxyparse

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

You can also use apt command to install doxygen-doxyparse.

sudo apt -y install doxygen-doxyparse

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

sudo aptitude install doxygen-doxyparse

Summary

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