Re: [Tutor] Make a .exe

2005-03-04 Thread Max Noel
On Mar 4, 2005, at 09:26, David Holland wrote: It Completed with these errors :- The following modules appear to be missing {'AppKit', 'Foundation', 'objc'] Now that's really weird. AppKit and Foundation are Mac OS X frameworks, and objc stands for Objective-C, the language in which they're writ

[Tutor] Make a .exe

2005-03-04 Thread David Holland
I have a game I wrote using python and pygame that I am trying to change into a .exeI created the script setup.py which has this code :- setup.pyfrom distutils.core import setupimport py2exesetup(console=["Gamename.py"]) In a dos prompt with all the files there I ran :-python setup.py py2exe It Com