无法在 NetBeans 中导入 nltk
我试图在 python 代码中导入 NLTK
,但收到此错误:
Traceback (most recent call last):
File "/home/afs/NetBeansProjects/NER/getNE_followers.py", line 7, in <module>
import nltk
ImportError: No module named nltk
我正在使用 NetBeans: 6.7.1
、Python 2.6 NLTK
。 我的 NLTK 模块安装在 /usr/local/lib/python2.6/dist-packages/nltk/
中,我已将其添加到 Netbeans 的
。Python
路径中
我在这里缺少什么?
提前致谢。
I am trying to import NLTK
in my python code and I get this error:
Traceback (most recent call last):
File "/home/afs/NetBeansProjects/NER/getNE_followers.py", line 7, in <module>
import nltk
ImportError: No module named nltk
I am using NetBeans: 6.7.1
, Python 2.6 NLTK
.
My NLTK module is installed in /usr/local/lib/python2.6/dist-packages/nltk/
and I have added this in Python
paths in Netbeans
.
What am I missing here?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能在
/usr/bin/python
上默认安装了 python。因此,在 Netbeans 首选项中,尝试将 python 解释器设置为/usr/local/bin/python
而不是/usr/bin/python
You might have default python installation on
/usr/bin/python
. So, In Netbeans preference, try to set python interpreter to/usr/local/bin/python
instead of/usr/bin/python
纠正了问题。我已将 nltk 路径包含在 Netbeans 全局设置中,但该项目仍使用 Jython 2.5 作为其 Python 平台,因此全局设置从未影响该项目。
Rectified the problem. I had included the nltk path in the Netbeans global settings but the project was still using Jython 2.5 as its Python platform so the global settings never affected the project.