Windows-7、64 ビット PC を使用しています。Python を使用して、テキストのスペル チェックを実行したいと考えています。「pip install pyenchant」コマンドを使用して PyEnchant パッケージをインストールしようとしました。インストールされます。しかし、ipython コンソールで enchant をインポートしようとすると、「ImportError: cannot import name utils」というエラーが表示されます。PyEnchant をインストールして使用する他の方法はありますか?
In [43]: import enchant
Traceback (most recent call last):
File "<ipython-input-43-be94a407aebb>", line 1, in <module>
import enchant
File "C:\Anaconda2\lib\site-packages\enchant\__init__.py", line 92, in <module>
from enchant import _enchant as _e
File "C:\Anaconda2\lib\site-packages\enchant\_enchant.py", line 55, in <module>
from enchant import utils
ImportError: cannot import name utils