我没有 Python 3.6.1 IDLE,因此 tkinter 无法工作

我没有 Python 3.6.1 IDLE,因此 tkinter 无法工作

我安装了 python 3.6.1。但后来意识到我没有 IDLE,只能通过键入 来通过终端访问 python python。终端中的 python 版本是 2.7.12 而不是 3.6.1。我知道 Ubuntu 自带 Python 2.7.12。但我怎么不能使用 3.6.1?

答案1

要使用 Python3,请python3在终端中输入。

要使用 tkinter,您需要通过输入以下命令进行安装

sudo apt-get install python3-tk

相关内容