error while importing Tkinter in python
本问题已经有最佳答案,请猛点这里访问。
导入Tkinter时出现以下错误:
1 2 3 4 5 6 7 8 9 10 | 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 >>> |
我该怎么办?
可能只是安装Tkinter - 如果您有基于Debian的发行版,也许
你可以尝试做
1 | from tkinter import * |
我不知道为什么,但这似乎对我有用,它只是意味着来自tkinter import all。
另一件事是他们在python 3.5中改为小写t。 只为了未来的知识。