mmorph command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mmorph: command not found
or when using sudo you get the following error message
sudo: mmorph: command not found
Solutions to mmorph: command not found
How To Fix mmorph: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mmorph is provided by mmorph package.
mmorph is:
The MULTEXT morphology tool, mmorph, is a free implementation of the two-level formalism for natural language morphology.
mmorph is a tool for morphology analysis or any other purposes. mmorph provides the means by which lexicons can be constructed and modified, and texts annotated with lexical information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mmorph
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mmorph.
sudo apt -y install mmorph
Or if you have aptitude installed you can use the following command.
sudo aptitude install mmorph
Summary
In this tutorial we learn how to fix mmorph command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.