Skip to content

Latest commit

 

History

History
74 lines (55 loc) · 2.15 KB

PythonGUI.md

File metadata and controls

74 lines (55 loc) · 2.15 KB
title date tags categories
PythonGUI
2018-12-13 08:02:20 -0800
GUI
Python

💠

💠 2024-11-20 19:35:19


GUI

GTK

Official Doc | pygtk
pygtk wiki

stuartlangridge/ColourPicker拾色器

yucefsourani/python-gtk4-examples

World / lollypop · GitLab
maoschanz/drawing: Simple image editor for Linux

Tkinter

Offcial Site | Official Doc

Python - GUI Programming (Tkinter)

Python GUI examples (Tkinter Tutorial)

安装

  • python2: sudo apt install python-tk
  • python3: sudo apt install python3-tk

引入

  • python2:import Tkinter | import Tkinter as tk | from Tkinter import *
  • 但是python3.5的环境下,import tkinter 才是正确的

PyQt

在Terminal中输入:sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer

    qt4-dev-tools 中包括了Qt Assistant,Qt Linguist,Qt Creator
    qt4-doc 这个是帮助文档
    qt4-qtconfig Qt的配置工具,这个装好默认好
    qt4-demos 官方的一些Demo
    qt4-designer 可视化窗体设置工具

kivy

官网 Kivy中文编程指南

wxPython

坑多

NiceGUI

Official

CLI

Command-line interface

Textualize/rich: Rich is a Python library for rich text and beautiful formatting in the terminal.