In particular, I want to download the Greek and German ones. Would that be possible?
If not, then, as far as I understand, I have to build my own dictionaries, by utilizing the corresponding files from the, libreoffice say, project. Am I right?
In particular, I want to download the Greek and German ones. Would that be possible?
If not, then, as far as I understand, I have to build my own dictionaries, by utilizing the corresponding files from the, libreoffice say, project. Am I right?
If your using linux e.g. Ubuntu
From the terminal type:
sudo apt-get install myspell-de-de hunspell-el
You can check that you have it available, from a Python prompt type:
import enchant
print enchant.list_languages()
To check it works, from a Python prompt type:
import enchant
d = enchant.Dict('de_DE') # or 'el_GR'
d.check("Hello") # False
d.check("Guten") # True
For a fuller list of dictionaries see:
http://packages.ubuntu.com/xenial/myspell-dictionary
http://packages.ubuntu.com/xenial/aspell-dictionary
http://packages.ubuntu.com/source/xenial/libreoffice-dictionaries