[Tutor] py2exe and modules
Danny Yoo
dyoo@hkn.eecs.berkeley.edu
Mon, 20 Aug 2001 15:30:28 -0700 (PDT)
On Mon, 20 Aug 2001, paul wrote:
> ok, i know how to use py2exe to turn a basic program into an executable.
> but, i wrote a program using Tkinter, and when i ran py2exe to convert it to
> executable, it gave me a list of modules that it could not find. i know i'm
> supposed to do something with these modules, like copy them into some
> directory, am i correct? if i am correct, though, there are some modules
> that i cannot find. for example, the list of modules was as follows:
>
> win32api
> riscosenviron
> ce
> riscos
> riscospath
>
>
> i can only find riscosenviron and riscospath.
It sounds like you'll need to get the win32 extensions, which can be found
here:
http://starship.python.net/crew/mhammond/
A more direct link is here:
http://aspn.activestate.com/ASPN/Downloads/ActivePython/Extensions/Win32all
However, I'm not quite sure about the 'ce' module (WinCE?). Does anyone
know why py2exe is asking for this module?
Good luck to you!