我使用
pip install pyenchant
当我执行
import enchant
b = enchant.Broker()
print(b.describe())
我正进入(状态
[<Enchant: Hspell Provider>]
我能够发现输出应该至少包含
[<Enchant: Ispell Provider>, <Enchant: Myspell Provider>, <Enchant: Aspell Provider>]
无论出于何种原因,我的 pyenchant 创建的代理列表中只有一个希伯来语(hspell)提供者。我想使用“us_EN”字典,但如果我没有安装 hspell,可用字典列表是 [],或者在我安装 hspell 后是 ['he']。我的系统中确实安装了 aspell,我进行了三重检查。任何帮助将不胜感激。