为什么 Eclipse 中的 Pydev 声称工作程序出现错误?

发布于 2024-10-14 19:41:37 字数 684 浏览 2 评论 0原文

可能的重复:
Eclipse PyDev 现在将对 Tkinter 的所有引用显示为错误

我有一个非常简单的测试项目:

from Tkinter import *

win = Tk()
l = Label(win, text="Hello, TKInter")
l.pack()

win.mainloop()

它运行良好,但在 Eclipse 中,我收到以下两个错误:

Undefined variable: Label line 3
Undefined variable: Tk line 2

我是否正在执行某些操作来生成这些错误?如果没有,有没有办法强制 Eclipse 正确地重新评估这些行?

Possible Duplicate:
Eclipse PyDev now shows all references to Tkinter as errors

I have the very simple test project:

from Tkinter import *

win = Tk()
l = Label(win, text="Hello, TKInter")
l.pack()

win.mainloop()

It runs fine, but in Eclipse, I get the following two errors:

Undefined variable: Label line 3
Undefined variable: Tk line 2

Am I doing something to generate these errors? If not, is there a way to force Eclipse to re-evaluate those lines correctly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寒冷纷飞旳雪 2024-10-21 19:41:37

因为您导入*。因此 Eclipse 不知道 Tk 和 Label 已导入。使用 from Tkinter import Tk, Label 代替。

Because you import *. Eclipse hence don't know that Tk and Label is imported. Use from Tkinter import Tk, Label instead.

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