在 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 的 shell。
谢谢。
答案1
IDLE 3 是 Python 3.x 的集成开发环境。IDLE 3 使用 Tkinter 编写,因此与平台完全无关。要在所有当前支持的 Ubuntu 版本中安装 idle3,请打开终端并输入:
sudo apt install idle3
然后命令python3 -m idlelib
将成功打开IDLE 3。
要为 Python 2.x 和 Python 3.x 安装 IDLE,请打开终端并输入:
sudo apt install idle idle3