libjulius-config command not found

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

Introduction

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

libjulius-config: command not found

or when using sudo you get the following error message

sudo: libjulius-config: command not found

Solutions to libjulius-config: command not found

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

In Ubuntu libjulius-config is provided by libjulius-dev package.

libjulius-dev is:

Julius is a high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) engine.

It supports N-gram based dictation, DFA grammar based parsing, and one-pass isolated word recognition. Phone context dependencies are supported up to triphone. It can perform a multi-model decoding, a recognition using several LMs and AMs simultaneously with a single processor, and also supports “hot plugging” of arbitrary modules at run time.

This package contains header files and static libraries for developing programs that use Julius.

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

sudo apt-get -y install libjulius-dev

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

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

sudo apt -y install libjulius-dev

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

sudo aptitude install libjulius-dev

Summary

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