genparse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
genparse: command not found
or when using sudo you get the following error message
sudo: genparse: command not found
Solutions to genparse: command not found
How To Fix genparse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu genparse is provided by genparse package.
genparse is:
From simple and concise specification file, you can define the command line parameters and switches that you would like to be able to pass to your program. Genparse creates the C code of the parser for you, which you can then compile as a separate file and link with your program.
To fix this problem, we can install more using the command below.
sudo apt-get -y install genparse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install genparse.
sudo apt -y install genparse
Or if you have aptitude installed you can use the following command.
sudo aptitude install genparse
Summary
In this tutorial we learn how to fix genparse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.