misspell-fixer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
misspell-fixer: command not found
or when using sudo you get the following error message
sudo: misspell-fixer: command not found
Solutions to misspell-fixer: command not found
How To Fix misspell-fixer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu misspell-fixer is provided by misspell-fixer package.
misspell-fixer is:
Utility to fix common misspellings, typos in source code. There are lots of typical misspellings in program code. Typically they are more eye-catching in the living code but they can easily hide in comments, examples, samples, notes and documentation. With this utility you can fix a large number of them very quickly.
To fix this problem, we can install more using the command below.
sudo apt-get -y install misspell-fixer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install misspell-fixer.
sudo apt -y install misspell-fixer
Or if you have aptitude installed you can use the following command.
sudo aptitude install misspell-fixer
Summary
In this tutorial we learn how to fix misspell-fixer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.