我在我的 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
请帮忙。
看起来你没有nltk。
“ImportError 当导入语句无法找到模块定义或 from ... 导入无法找到要导入的名称时引发。” 请参阅:http ://docs.python.org/2/library/exceptions.html
尝试打开终端并运行:
pip install nltk