当我的 ubuntu 上存在 python 2.7.11+ 时,运行 python3 tkinter 时遇到问题

当我的 ubuntu 上存在 python 2.7.11+ 时,运行 python3 tkinter 时遇到问题

我是 Python 新手,尝试运行一个非常简单的 Python GUI 程序进行测试,结果出现以下错误

$ python3 Desktop.py

Traceback (most recent call last):
  File "Desktop.py", line 1, in <module>
    import tkinter
  File "/usr/local/lib/python3.5/tkinter/__init__.py", line 35, in <module>
    import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named '_tkinter'

答案1

似乎您没有安装适用于 Python 3 的 TKinter。运行以下命令安装 Tkinter:

sudo apt install python3-tk

相关内容