Re: [Boa Constr] Distributing boa apps
Status: Beta
Brought to you by:
riaan
From: Riaan B. <riaan@e.co.za> - 2002-10-18 01:29:58
|
Hi Aaron, Aaron Held wrote: > > What would be the best way to distribute a boa app to users w/o python > installed on thier machine? > > I am playing with the installer from > http://www.mcmillan-inc.com/install5_ann.html > but I thought I would ask here. I personally use py2exe, and Boa has some support for it. If you create a setup.py file for your project (from Palette->New->Setup) you can build an exe by selecting File->py2exe from the Setup.py module in the Editor. Note that it is your responsibility to make sure that everything that py2exe requires is in the setup.py file. (like importing py2exe, etc. see the py2exe docs) It's on my todo list to support Installer too, but there are many many other things with higher priority. > > Thanks, > -Aaron Held Cheers, Riaan. |