elixir-compose command not found

In this troubleshooting guide we learn how to fix elixir-compose command not found error message

Introduction

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

elixir-compose: command not found

or when using sudo you get the following error message

sudo: elixir-compose: command not found

Solutions to elixir-compose: command not found

How To Fix elixir-compose: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu elixir-compose is provided by libelixirfm-perl package.

libelixirfm-perl is:

The ElixirFM module reimplements some of the functionality of the ElixirFM system written in Haskell, which implements Functional Arabic Morphology.

ElixirFM can process words of Modern Written Arabic using four different modes.

You can find documentation for this module at http://elixir-fm.wiki.sourceforge.net/

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

sudo apt-get -y install libelixirfm-perl

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

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

sudo apt -y install libelixirfm-perl

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

sudo aptitude install libelixirfm-perl

Summary

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