在 Ubuntu 中,我尝试调用 IDLE
$ python3 -m idlelib
** IDLE can't import Tkinter.
Your Python may not be configured for Tk. **
我该如何解决这个问题?
我试图通过 安装idle
,sudo apt-get install idle
但在那之后,运行idle
将调用 Python2.7 的 shell,而不是 Python3。
谢谢。
在 Ubuntu 中,我尝试调用 IDLE
$ python3 -m idlelib
** IDLE can't import Tkinter.
Your Python may not be configured for Tk. **
我该如何解决这个问题?
我试图通过 安装idle
,sudo apt-get install idle
但在那之后,运行idle
将调用 Python2.7 的 shell,而不是 Python3。
谢谢。
IDLE 3 是 Python 3.x 的集成开发环境。IDLE 3 是使用 Tkinter 编写的,因此完全独立于平台。要在所有当前支持的 Ubuntu 版本中安装 idle3,请打开终端并输入:
然后该命令
python3 -m idlelib
将成功打开 IDLE 3。要为 Python 2.x 和 Python 3.x 安装 IDLE,请打开终端并键入: