Mac上的python import nltk错误

时间:2014-02-16 14:45:01

标签: python nltk

我迷路了......

我按照说明在Mac上安装了NLTK http://www.nltk.org/install.html

当我在shell中使用import nltk时,不会显示任何错误消息。

$ python
Python 2.7.6 |Anaconda 1.9.0 (x86_64)| (default, Jan 10 2014, 11:23:15)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import nltk
>>>

但是在文件中使用它......

#!/usr/bin/python

import nltk

print "test"

并运行它,解释器无法找到模块......

Traceback (most recent call last):
  File "./dummy.py", line 3, in <module>
    import nltk
ImportError: No module named nltk

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

尝试使用PIP或自制程序或您用于安装它的任何内容重新安装它。如果有任何说“错误”和“铿锵”(抱歉我记不清确切的错误),这意味着它没有正确安装,这可能是因为你没有权限。使用“sudo”命令运行用于安装它的命令,以防您没有权限。

答案 1 :(得分:0)

试试这个

$python
>>> import nltk
>>> nltk.download()