Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经下载了python 2.5。我想知道 Tkinter 是否包含在 python 中,还是单独下载?
是的,它包括在内。
http://wiki.python.org/moin/TkInter
如果您使用的是 linux,只需打开终端并输入 python 并在python解释器中输入 from Tkinter import*,如果它没有显示任何错误消息,您就可以开始了。你可以试试这个来检查每个 python 包,就像Pygame用 Pygame 替换 Tkinter
python
from Tkinter import*
Pygame