如何摆脱mac上的import nltk错误?

时间:2013-11-11 21:37:33

标签: python macos nltk

我在我的Mac上运行Python 2.7.2。

我收到了import nltk

的错误消息

即:

>>> import nltk
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named nltk

请帮忙。

1 个答案:

答案 0 :(得分:1)

看起来你没有nltk。

“导入错误 当import语句无法找到模块定义或者from ... import无法找到要导入的名称时引发。“ 请参阅:http://docs.python.org/2/library/exceptions.html

尝试打开终端并运行:

pip install nltk

如果您没有安装pip,请查看: How do I install pip on macOS or OS X?