yaggo command not found

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

Introduction

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

yaggo: command not found

or when using sudo you get the following error message

sudo: yaggo: command not found

Solutions to yaggo: command not found

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

In Ubuntu yaggo is provided by yaggo package.

yaggo is:

Yaggo is a tool to generate command line parsers for C++. Yaggo stands for “Yet Another GenGetOpt” and is inspired by GNU Gengetopt.

It reads a configuration file describing the switches and argument for a C++ program and it generates one header file that parses the command line using getopt_long(3).

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

sudo apt-get -y install yaggo

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

You can also use apt command to install yaggo.

sudo apt -y install yaggo

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

sudo aptitude install yaggo

Summary

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