Need Help Using Py2Exe

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • upward_spiral2001

    Need Help Using Py2Exe

    Hi. I've got a neat artificial intelligence project I want to
    distribute as an EXE. I'm using Python, Pygame, and Numeric. My
    problem is: When I use py2exe, I'm told "The following modules
    appear to be missing: AppKit, Foundation, dotblas, objc." And then
    my EXE crashes with a "segmentati on fault." I tried the command:

    python setup.py py2exe --ignores [those modules]

    It then compiles w/o complaint, but the EXE still crashes. The
    setup.py is very simple:

    from distutils.core import setup
    import py2exe
    setup(console=["NissIslandDemo .py"])

    What do I need to do to make my program into a working EXE?

    Thanks for any help.


Working...