mwic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mwic: command not found
or when using sudo you get the following error message
sudo: mwic: command not found
Solutions to mwic: command not found
How To Fix mwic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mwic is provided by mwic package.
mwic is:
mwic, misspelled words in context, is a spell-checker that groups possible misspellings and shows them in their contexts. This is useful for checking technical documents that often contain words that are not included in standard dictionaries.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mwic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mwic.
sudo apt -y install mwic
Or if you have aptitude installed you can use the following command.
sudo aptitude install mwic
Summary
In this tutorial we learn how to fix mwic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.