catmandu command not found

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

Introduction

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

catmandu: command not found

or when using sudo you get the following error message

sudo: catmandu: command not found

Solutions to catmandu: command not found

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

In Ubuntu catmandu is provided by libcatmandu-perl package.

libcatmandu-perl is:

Catmandu provides a suite of Perl modules to ease the import, storage, retrieval, export and transformation of metadata records.

Combine Catmandu modules with web application frameworks such as PSGI/Plack, document stores such as MongoDB or CouchDB and full text indexes as ElasticSearch or Solr to create a rapid development environment for digital library services such as institutional repositories and search engines.

Use of the debug option requires the packages liblog-any-adapter-log4perl-perl and liblog-log4perl-perl.

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

sudo apt-get -y install libcatmandu-perl

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

You can also use apt command to install libcatmandu-perl.

sudo apt -y install libcatmandu-perl

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

sudo aptitude install libcatmandu-perl

Summary

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