导入Tkinter时出现以下错误:
Python 2.7.1 (r271:86832, Jun 11 2011, 11:34:27)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Tkinter
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/lib-tk/Tkinter.py", line 39, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named _tkinter
>>>
我该怎么办?
答案 0 :(得分:1)
可能只是安装Tkinter - 如果您有基于Debian的发行版,也许apt-get install python-tk
会这样做。其他发行版可能是python3-tk
或其他内容。
答案 1 :(得分:0)
您可以尝试改为
from tkinter import *
我不知道为什么,但这似乎对我有用,它只是意味着来自tkinter import all。 另一件事是他们在python 3.5中改为小写t。只是为了未来的知识。