How to generate execute file that include enthought.traits.api , enthought.traits.ui.api ?

Robert Kern robert.kern at gmail.com
Fri Jun 4 11:49:14 EDT 2010


On 6/3/10 10:05 PM, ray wrote:
> Hi all,
>     I  code the program that using enthought.traits.api ,
> enthought.traits.ui.api.
> I want  to genereate execute file.I try PY2EXE,bb-
> freeze,cx_freeze,Pyinstaller ,but the execute files  can not run
> successful.
> The attach file is my source code.
> My environment :
> 1.Python 2.6.2
> 2. OS platform is MS Windows XP.
>
> Anybody can share the experience ?

Our GUI components use some dynamic imports to provide the backend 
implementations. Most of those tools require you to explicitly state some of 
those backend-specific subpackages since they cannot introspect them directly 
from the import statements. Specifically, enthought.traits.ui.wx and 
enthought.pyface.ui.wx (replace "wx" with "qt4" if you are using PyQt).  The way 
you do this is different for each tool; you will have to consult its documentation.

You will want to ask future questions about ETS on our mailing list:

   https://mail.enthought.com/mailman/listinfo/enthought-dev

-- 
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
  that is made terrible by our own mad attempt to interpret it as though it had
  an underlying truth."
   -- Umberto Eco




More information about the Python-list mailing list