我正在运行Ubuntu 10.10,今天我安装了Python 3.2.该系统已经在运行Python 2.6.
我在终端输入idle3.2,它给了我:
IDLE can’t import Tkinter. Your Python may not be configured for Tk.
所以我搜索了Stack Overflow(以及其他一些地方)的解决方案,我安装了python-tk,我重新检查了我在系统上有tclsh,但我还是无法设法打开idle3.2.
任何输入将不胜感激.
最佳答案
在OSX上,可以通过为python版本安装python tkinter包来解决这个问题.在我的例子中,使用python 2.7,我在终端上运行:
原文链接:https://www.f2er.com/linux/440611.htmlsudo port install py27-tkinter
将“27”更改为您的python版本号.