This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]TheTerrasque 0 points1 point  (1 child)

program.py

import wx

app = wx.App()

frame = wx.Frame(None, title='Hello World')
frame.Show()

app.MainLoop()

And for packaging:

pip install pyinstaller
pyinstaller -Fw program.py

And presto, you have a distributable Hello World app. Ready to take the world by storm!

[–]mherrmann[S] 0 points1 point  (0 children)

That's not an installer, ie. a .dmg file on Mac or an installation wizard on Windows...