大多数内容是翻译自 https://python-gtk-3-tutorial.readthedocs.io/en/latest/index.html 删减了我觉得简单的,添加了一下我觉得需要说明的,算是学习笔记吧。。。
只针对ubuntu20.04,其他版本没有测试
1、打开终端
2、执行sudo apt install python3-gi python3-gi-cairo gir1.2-gtk-3.0
3、创建hello.py
文件,填写如下代码:
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
window = Gtk.Window(title="Hello World")
window.show()
window.connect("destroy", Gtk.main_quit)
Gtk.main()
4、运行刚刚创建的文件python3 hello.py
,至此已经可以编写代码做开发。
5、为了更方便的开发UI我们可以安装glade:sudo apt install glade