没有德语字典的PyEnchant

时间:2012-08-03 23:16:49

标签: python dictionary pyenchant

感谢Stackoverflow,我了解了pyenchant库。

我正在寻找通过附魔使用的德语字典“de_DE”,但找不到。我在哪里可以得到它以及我应该放哪个目录以便pyenchant可以看到它?

我正在使用运行Ubuntu的Linux机箱。

1 个答案:

答案 0 :(得分:4)

从终端类型:

sudo apt-get install myspell-de-de

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

import enchant
print enchant.list_languages()

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

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

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

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

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

http://packages.ubuntu.com/source/precise/openoffice.org-dictionaries

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