elixir-column command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
elixir-column: command not found
or when using sudo you get the following error message
sudo: elixir-column: command not found
Solutions to elixir-column: command not found
How To Fix elixir-column: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu elixir-column 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-column command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.