无法在 NetBeans 中导入 nltk

发布于 2024-09-01 00:27:53 字数 480 浏览 6 评论 0原文

我试图在 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.1Python 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘落散花 2024-09-08 00:27:53

您可能在 /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

是你 2024-09-08 00:27:53

纠正了问题。我已将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文