yagf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
yagf: command not found
or when using sudo you get the following error message
sudo: yagf: command not found
Solutions to yagf: command not found
How To Fix yagf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu yagf is provided by yagf package.
yagf is:
YAGF is a graphical interface for cuneiform and tesseract text recognition tools on the Linux platform. With YAGF you can scan images via XSane, import pages from PDF documents, perform images preprocessing and recognize texts using cuneiform from a single command centre. YAGF also makes it easy to scan and recognize several images sequentially.
To fix this problem, we can install more using the command below.
sudo apt-get -y install yagf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install yagf.
sudo apt -y install yagf
Or if you have aptitude installed you can use the following command.
sudo aptitude install yagf
Summary
In this tutorial we learn how to fix yagf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.