From: Robert Kern on 4 Jun 2010 11:49 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
|
Pages: 1 Prev: threading and atexit: different behaviour in python2.6 from 2.5 Next: strange syntax error |