如何在 Ubuntu 9.04 上为 tkinter 设置 pythonpath (python2.6)(以使用 nltk)?

发布于 2024-08-22 14:09:04 字数 325 浏览 7 评论 0原文

我想在运行 Ubuntu 9.04 的机器上使用 nltk 工具包。我安装了 python 2.6.4 和几个附加包(numpy、scipy、matplotlib,当然还有 nltk)。我可以导入 nltk,但是调用一些方法会给出各种错误信息,所有错误信息都包含“请安装 Tkinter 库”。 谷歌搜索我从 http://wiki.python.org/moin/TkInter 发现我应该设置我的 pythonpath 环境变量。然而,在搜索了几个小时后我无法找到如何做到这一点。

I'd like to use the nltk toolkit on my machine which runs Ubuntu 9.04. I installed python 2.6.4 and several additional packages (numpy, scipy, matplotlib and of course nltk). I can import nltk, but calling a few methods gives various error masseges, all contain "please install Tkinter library".
Googling around I discovered from http://wiki.python.org/moin/TkInter that I should set my pythonpath environment variable. However I couldn't find out how to do this after searching for hours.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

百变从容 2024-08-29 14:09:04

听起来您在安装 Python 2.6.4 时忘记安装相应的 TkInter。从同一来源安装它。

Sounds like you forgot to install the appropriate TkInter when you installed Python 2.6.4. Install it from the same source.

我要还你自由 2024-08-29 14:09:04

Tkinter 通常包含在 python 标准库中,但 Ubuntu 将其排除在常规 python 包之外。您只需要安装python-tk包。

sudo apt-get install python-tk

Tkinter is usually included with the python standard libraries but Ubuntu left it out of the regular python package. You just need to install the python-tk package.

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