4

I am using GNU Emacs 26.1 on macOS Catalina.

When I try to enable ispell or flycheck-mode I am getting following error:

No word lists can be found for the language "en_US".

=> How could I fix this error?

alper
  • 1,238
  • 11
  • 30

4 Answers4

3

Package aspell comes with Debian 11, but evidently lacks dictionaries.

    sudo apt-get install aspell-en

Installs the English spelling dictionary for aspell.

Paul
  • 183
  • 8
1

Installing aspell fixed my problem.

brew install aspell
alper
  • 1,238
  • 11
  • 30
1

I faced the same problem on Fedora 34.

sudo dnf install aspell-en

fixed my problem.

AnilJ
  • 23
  • 4
0

Manjaro 21 also lacks dictionaries.

sudo pacman -S aspell-en

fix the problem.