LinuxSoftware

Coding and tramping in Aotearoa / New Zealand

Our primary concern at this stage is deployment for Windows users.

There's two things we have to do:

  1. Package a standalone Python program which can be run without requiring third party libraries to be installed

  2. Guide the user through Installation on their machine.

Packaging

  • Py2Exe - proven tool for packaging a standalone Python program for Windows

  • python win-setup.py py2exe

  • Py2App - tool for packaging a standalone Python program for Mac OSX

  • cx_Freeze - an alternative which might be worth looking at

Installation