yaz-icu command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
yaz-icu: command not found
or when using sudo you get the following error message
sudo: yaz-icu: command not found
Solutions to yaz-icu: command not found
How To Fix yaz-icu: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu yaz-icu is provided by yaz-icu package.
yaz-icu is:
YAZ is a toolkit for the development of client and server software built around the ANSI Z39.50 (ISO 23950) standard for information retrieval.
YAZ supports Z39.50-2003 (version 3), SRU versions 1.1 to 2.0, and the industry standard ZOOM API for Z39.50.
The yaz-icu program is a command-line client that exposes the ICU chain module of YAZ.
To fix this problem, we can install more using the command below.
sudo apt-get -y install yaz-icu
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install yaz-icu.
sudo apt -y install yaz-icu
Or if you have aptitude installed you can use the following command.
sudo aptitude install yaz-icu
Summary
In this tutorial we learn how to fix yaz-icu command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.