Python GUI

Posted 只缘心高嫌地窄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python GUI相关的知识,希望对你有一定的参考价值。

Tkinter

  • 内置库,如果没有运行 sudo apt-get install python-tk
  • 3.0一下用import Tkinter
  • 3.0及以上用import tkinter, tkinter.Tk()
from Tkinter import *
a = Tk()
a.wm_title("my friend")
b = Label(a, text = "my friend is she")
b.pack()
a.mainloop()

wxPython

  • 不支持3.0以上
  • sudo apt-get install python-wxgtk2.8 python-wxtools wx2.8-i18n libwxgtk2.8-dev libgtk2.0-dev

以上是关于Python GUI的主要内容,如果未能解决你的问题,请参考以下文章

Python - GUI

Python-GUI编程-PyQt5

创建Python GUI

在python中将方法从辅助GUI传递到主GUI

为啥其他窗口(GUI)没有打开,而其他窗口(GUI)在 Python 中运行?

Python的 GUI 框架