yazpp-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
yazpp-config: command not found
or when using sudo you get the following error message
sudo: yazpp-config: command not found
Solutions to yazpp-config: command not found
How To Fix yazpp-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu yazpp-config is provided by libyazpp-dev package.
libyazpp-dev is:
YAZ++ is an application programming interface (API) to YAZ which supports the development of Z39.50/SRW/SRU client and server applications using C++. Like YAZ, it supports Z39.50-2003 (version 3) as well as SRW/SRU version 1.1 in both the client and server roles. YAZ++ includes an implementation of the ZOOM C++ binding and a generic client/server API based on the Observer/Observable design pattern.
This package includes development libraries and C++ header files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libyazpp-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libyazpp-dev.
sudo apt -y install libyazpp-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libyazpp-dev
Summary
In this tutorial we learn how to fix yazpp-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.