pyenchant 代理只有 Hspell 提供程序 [<Enchant: Hspell Provider>],没有 Aspell 提供程序

Grz*_*zcz 5 ubuntu aspell python-3.x pyenchant

我安装了pyenchant(Ubuntu 17.0,Spyder 3.2.4,Python 3.6.1 64bits)使用

pip install pyenchant
Run Code Online (Sandbox Code Playgroud)

当我执行

import enchant
b = enchant.Broker()
print(b.describe())
Run Code Online (Sandbox Code Playgroud)

我正进入(状态

[<Enchant: Hspell Provider>]
Run Code Online (Sandbox Code Playgroud)

我能够发现输出应该至少包含

[<Enchant: Ispell Provider>, <Enchant: Myspell Provider>, <Enchant: Aspell Provider>]
Run Code Online (Sandbox Code Playgroud)

无论出于何种原因,我的 pyenchant 创建了列表中只有一个希伯来语 (hspell) 提供程序的代理。我想使用“us_EN”字典,但可用字典的列表是 [] 如果我没有安装 hspell,或者在我安装 hspell 后是 ['he']。我的系统中确实安装了 aspell,我进行了三重检查。任何帮助将不胜感激。