我正在尝试为某些文本处理加载pyenchant,但在我尝试导入pyenchant时使用pip install pyenchant
后,我收到以下错误。有没有人见过这个或知道如何解决它?
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-6-fd4a8a7f6802> in <module>()
1 import pandas as pd
----> 2 import enchant as ench
3
4 List_v1 = pd.read_csv("List_v1.txt",sep='\t')
5 List_v1 = List_v1.fillna(0)
/__init__.py in <module>()
90
91 try:
---> 92 from enchant import _enchant as _e
93 except ImportError:
94 if not os.environ.get("PYENCHANT_IGNORE_MISSING_LIB",False):
/enchant/_enchant.py in <module>()
53 from ctypes.util import find_library
54
---> 55 from enchant import utils
56 from enchant.errors import *
57 from enchant.utils import unicode
ImportError: cannot import name utils
答案 0 :(得分:2)
我有同样的错误。什么解决了我的问题是安装pyenchant所基于的C库附魔。 (见Cannot install pyenchant on OSX) 您可以通过运行:
来安装它brew install enchant