如何在 Ubuntu 9.04 上为 tkinter 设置 pythonpath (python2.6)(以使用 nltk)?
我想在运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您在安装 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.
Tkinter 通常包含在 python 标准库中,但 Ubuntu 将其排除在常规 python 包之外。您只需要安装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.