nmz-config command not found

In this troubleshooting guide we learn how to fix nmz-config command not found error message

Introduction

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

nmz-config: command not found

or when using sudo you get the following error message

sudo: nmz-config: command not found

Solutions to nmz-config: command not found

How To Fix nmz-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu nmz-config is provided by libnmz7-dev package.

libnmz7-dev is:

Namazu is a full text search engine which is usable via CGI. It features a simple and easy setup, and is written in C and Perl. Namazu uses the text utilities nkf, kakasi or chasen.

The package contains libnmz header files and static libraries. It is for Namazu search client developments.

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

sudo apt-get -y install libnmz7-dev

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

You can also use apt command to install libnmz7-dev.

sudo apt -y install libnmz7-dev

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

sudo aptitude install libnmz7-dev

Summary

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