“导入错误:没有名为 Tkinter 的模块”即使我昨天才使用过 Tkinter 程序并且没有做出任何实质性的改变?

发布于 2024-11-17 00:15:13 字数 119 浏览 1 评论 0原文

我收到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

茶底世界 2024-11-24 00:15:13

您可能想检查用于运行脚本的 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).

鹿港小镇 2024-11-24 00:15:13

当您的系统上很可能安装了多个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文