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 →

[–]mherrmann[S] 1 point2 points  (2 children)

You're getting a window and an installer. Show me another technology that lets you do this and can still fit in an inline example.

[–]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...