- PySimpleGUI Tutorial
- PySimpleGUI - Home
- PySimpleGUI - Introduction
- PySimpleGUI - Environment Setup
- PySimpleGUI - Hello World
- PySimpleGUI - Popup Windows
- PySimpleGUI - Window Class
- PySimpleGUI - Element Class
- PySimpleGUI - Events
- PySimpleGUI - Menubar
- PySimpleGUI - Matplotlib Integration
- PySimpleGUI - Working with PIL
- PySimpleGUI - Debugger
- PySimpleGUI - Settings
- PySimpleGUI Useful Resources
- PySimpleGUI - Quick Guide
- PySimpleGUI - Useful Resources
- PySimpleGUI - Discussion
PySimpleGUI - 环境设置
PySimpleGui 支持 Python 3.x 版本以及 Python 2.7 版本。主要端口 PySimpleGui 没有任何外部依赖项,因为它所基于的 Tkinter 是 Python 标准库的一部分,因此不需要单独安装。通过pip安装程序在当前Python3环境中安装,如下
pip3 install PySimpleGUI
要验证库是否已正确安装,请输入以下语句 -
>>> import PySimpleGUI >>> PySimpleGUI.version '4.60.1 Released 22-May-2022'
如果 PIP 安装不起作用,您可以从 Github 存储库(https://github.com/PySimpleGUI/PySimpleGUI)下载“pysimplegui.py” ,并将其与导入它的应用程序一起放入您的文件夹中。
pysimplegui.py文件具有“main()”函数。当从 Python 提示符调用时,它会生成以下窗口以确认该包已正确安装。
>>> import PySimpleGUI as psg >>> psg.main() Starting up PySimpleGUI Diagnostic & Help System PySimpleGUI long version = 4.60.1 Released 22-May-2022 PySimpleGUI Version 4.60.1 tcl ver = 8.6 tkinter version = 8.6 Python Version 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 24 2018, 00:16:47) [MSC v.1916 64 bit (AMD64)] tcl detailed version = 8.6.6 PySimpleGUI.py location F:\python36\lib\sitepackages\PySimpleGUI\PySimpleGUI.py
GUI 窗口如下所示:
如果您使用的Python3版本早于3.4,您可能需要安装“typing”模块,因为它没有包含在相应的标准库中
pip3 install typing
对于 Python 2.7,将名称更改为 PySimpleGUI27。
pip3 install PySimpleGUI27
您可能还需要安装 2.7 版本的“future”
pip3 install future
但是,需要注意的是,Python 软件基金会并不正式支持 Python 2.x 分支。