On my system, aspell was reported as installed, yet I had no spell checking in documents I opened. The option was there in Tools > Spelling... and Tools > Spelling (from cursor)..., but they didn't work.
I first looked at apt-cache show aspell which showed:
I tried (as root) apt-get install --simulate aspell-en aspell-dictionary aspell6a-dictionary aspell-doc spellutils and got:
So I removed that package and reran the command and got:
So I removed that as well and got no errors. Simulation done, I ran the command for real:
and all went well. I opened a text document and clicked on Tools > Spelling and voila, Aspell she was a running!
So, to identify the individual language dictionary packages that you want to install, just open a console and type:
and you'll be presented with the possible choices. aspell6a-dictionary only points to the three language dictionary packages listed above.
So, to recap, let's say you wanted to install the English, Danish, and Italian language dictionaries. You would run:
Additional language dictionaries would just be installed with:
where xx is the string after the - and before the version number.
I first looked at apt-cache show aspell which showed:
Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary
Suggests: aspell-doc, spellutils
Suggests: aspell-doc, spellutils
Package aspell-dictionary is a virtual package provided by:
aspell-uz 0.6.0-1
aspell-uk 1.6.0-1
.
.
.
aspell-am 0.03-1-3
You should explicitly select one to install.
E: Package aspell-dictionary has no installation candidate
aspell-uz 0.6.0-1
aspell-uk 1.6.0-1
.
.
.
aspell-am 0.03-1-3
You should explicitly select one to install.
E: Package aspell-dictionary has no installation candidate
Package aspell6a-dictionary is a virtual package provided by:
aspell-no 2.0.10-3.1
aspell-fi 0.7-17.1
aspell-da 1.6.18-1.1
You should explicitly select one to install.
E: Package aspell6a-dictionary has no installation candidate
aspell-no 2.0.10-3.1
aspell-fi 0.7-17.1
aspell-da 1.6.18-1.1
You should explicitly select one to install.
E: Package aspell6a-dictionary has no installation candidate
Code:
apt-get install aspell-en aspell-doc spellutils
So, to identify the individual language dictionary packages that you want to install, just open a console and type:
Code:
apt-get install --simulate aspell-dictionary
So, to recap, let's say you wanted to install the English, Danish, and Italian language dictionaries. You would run:
Code:
apt-get install aspell-en aspell-da aspell-it aspell-doc spellutils
Code:
apt-get install aspell-xx
Comment