- PySimpleGUI 教程
- PySimpleGUI - 主页
- PySimpleGUI - 简介
- PySimpleGUI - 环境设置
- PySimpleGUI - Hello World
- PySimpleGUI - 弹出窗口
- PySimpleGUI - 窗口类
- PySimpleGUI - 元素类
- PySimpleGUI - 事件
- PySimpleGUI - 菜单栏
- PySimpleGUI - Matplotlib 集成
- PySimpleGUI - 使用 PIL
- PySimpleGUI - 调试器
- PySimpleGUI - 设置
- PySimpleGUI 有用的资源
- PySimpleGUI - 快速指南
- PySimpleGUI - 有用的资源
- PySimpleGUI - 讨论
PySimpleGUI - 环境设置
PySimpleGui 支持 Python 3.x 版本和 Python 2.7 版本。主端口 PySimpleGui 没有外部依赖项,因为它基于 Tkinter(它基于该库),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 窗口如下所示
如果你使用早于 3.4 的 Python3 版本,则可能需要安装 "typing" 模块,因为它未包含在相应的标准库中。
pip3 install typing
对于 Python 2.7,请将名称更改为 PySimpleGUI27。
pip3 install PySimpleGUI27
你可能还需要为版本 2.7 安装 "future"
pip3 install future
但是,请务必注意,Python 软件基金会并不正式支持 Python 2.x 分支。
广告