run-with-aspell command not found

In this troubleshooting guide we learn how to fix run-with-aspell command not found error message

Introduction

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

run-with-aspell: command not found

or when using sudo you get the following error message

sudo: run-with-aspell: command not found

Solutions to run-with-aspell: command not found

How To Fix run-with-aspell: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu run-with-aspell is provided by aspell package.

aspell is:

GNU Aspell is a spell-checker which can be used either as a standalone application or embedded in other programs. Its main feature is that it does a much better job of suggesting possible spellings than just about any other spell-checker available for the English language, including Ispell and Microsoft Word. It also has many other technical enhancements over Ispell such as using shared memory for dictionaries and intelligently handling personal dictionaries when more than one Aspell process is open at once.

Aspell is designed to be a drop-in replacement for Ispell.

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

sudo apt-get -y install aspell

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

You can also use apt command to install aspell.

sudo apt -y install aspell

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

sudo aptitude install aspell

Summary

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