6

感谢 Stackoverflow,我了解了 pyenchant 库。

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

我正在使用运行 Ubuntu 的 linux 机器。

4

1 回答 1

7

从终端类型:

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

于 2012-08-24T20:33:58.337 回答