Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从网站上下载了 wxPython,但我不知道如何启动它。我有主文件夹,其中是:
库 脚本 unicows.dll
我该如何启动它?
假设您在 Windows 中运行,我将下载 wxPython 安装文件
从您的终端
C:> python
然后
import wx a = wx.App(redirect=False) d = wx.MessageBox("Hello World!!","Hello!")
然后开始阅读文档
从网站下载 Documents and Demos 包,安装它,阅读文档并尝试演示。 (如果你在 Windows 上,你确实先下载并安装了 python,不是吗)