“导入错误:没有名为 Tkinter 的模块”即使我昨天才使用过 Tkinter 程序并且没有做出任何实质性的改变?
我收到 Tkinter 错误,即使它是昨天导入并使用的。我有一个 Windows 7 操作系统并且正在运行 Python 2,所以我不确定此时我应该做什么。我的谷歌今天很弱,我似乎无法提出任何相关的内容。任何意见将不胜感激。
I'm getting a Tkinter error even though it was imported and used yesterday. I have a Windows 7 OS and am running Python 2, so I'm not sure what I'm supposed to do at this point. My google-fu is weak today, I can't seem to bring up anything relevant. Any input would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想检查用于运行脚本的 Python 解释器的版本是否发生了某种更改。
import tkinter
适用于 python 3(而不是 Tkinter)。You may want to check if the version of the Python interpreter used to run the script got changed somehow.
import tkinter
works in python 3 (instead of Tkinter).当您的系统上很可能安装了多个 Python,并且您运行该程序的版本与您编程时使用的版本不同时,就会发生这种情况。
默认情况下,您 PC 上的 Python 程序通常会以最新版本打开Python 版本。
This happens when you most likely have more than one Python installed on your system and you're running the program from a version different from the one you programmed it in.
By default, a Python program on your PC will usually be opened in the latest edition of Python.