Hacker News new | ask | show | jobs
by hesnuts 923 days ago
Does this only build Windows applications, or can it do the same for MacOS/Linux?

be great if you could build/package python code easily to run on native OS's without having the user install python, etc first.

2 comments

It works a treat on those other operating systems and pairs well with pyinstaller to make a single executable.
There is PyInstaller, cx_Freeze, etc. for that.

I've used PyInstaller to create standalone Windows EXEs for simple programs like command-line utilities, and even for simple wxPython GUI apps.

Worked well, although I've read that there may be some issues for more complex or bigger apps.