COLAB ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output

COLAB ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output

谁能帮我解决这个问题?我正在尝试在 colab 中安装 pyenchant 以在单词拼写错误时执行可能的建议。我想使用 pyenchant。 这是我试过的;

!pip install pyenchant==1.6.8 

但是输出如下错误;

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

我的想法是,如果一个词错了,得到一些可能的建议, 我计划执行以下操作

import enchant
test = enchant.Dict("en_US")
test.suggest("Posible")

任何人都可以建议我如何实现这一目标吗?我正在研究 colab。请帮助我如何在 colab 中安装 pyenchant 或任何其他可能的方式,如果一个词是错误的,我可以获得可能的建议。

另一种基于NLTK而没有附魔的可能性是NLTK的词库

>>> from nltk.corpus import words
>>> "would" in words.words()
True
>>> "could" in words.words()
True
>>> "should" in words.words()
True
>>> "I" in words.words()
True
>>> "you" in words.words()
True

或者如果你还想使用附魔 看过这个解决方案,已经解决了。

你需要先用apt安装

!apt install enchant

然后用 pip

!pip install pyenchant