如何在pyenchant中下载其他词典?

时间:2016-12-03 09:58:27

标签: python pyenchant

特别是,我想下载希腊语和德语。那可能吗?

如果没有,那么,据我所知,我必须利用libreoffice说的项目中的相应文件来构建我自己的词典。我是对的吗?

1 个答案:

答案 0 :(得分:0)

如果你使用linux,例如Ubuntu的

从终端类型:

sudo apt-get install myspell-de-de hunspell-el

您可以从Python提示符类型中检查您是否可以使用它:

import enchant
print enchant.list_languages()

要检查它是否有效,请从Python提示符输入:

import enchant
d = enchant.Dict('de_DE') # or 'el_GR'
d.check("Hello") # False
d.check("Guten") # True

有关更完整的词典列表,请参阅:

http://packages.ubuntu.com/xenial/myspell-dictionary

http://packages.ubuntu.com/xenial/aspell-dictionary

http://packages.ubuntu.com/source/xenial/libreoffice-dictionaries

http://packages.ubuntu.com/xenial/ispell-dictionary