Differences between revisions 3 and 4
Revision 3 as of 2004-05-18 06:20:26
Size: 625
Editor: zoran-fw1
Comment: Added signature
Revision 4 as of 2004-05-18 20:43:20
Size: 623
Editor: BSN-77-246-145
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
This will create a ''dist'' directory with all the files you're embedded python needs. This will create a ''dist'' directory with all the files your embedded python needs.

How can py2exe help shipping emedded Python projects

An embedded Python project relies on several modules. Finding these modules is very easy using py2exe.

Create a setup.py script with the following lines:

from distutils.core import setup
import py2exe

setup()

And then run it with your script in the command line

python setup.py py2exe --includes mymodule

This will create a dist directory with all the files your embedded python needs. Rename library.zip to python23.zip and place all the files in the application directory.

Miki <miki.tebeka@zoran.com>

ShippingEmbedded (last edited 2008-07-08 11:27:44 by localhost)