Hi, I've been trying to make a small kiwi app work with pyinstaller, without any success. After Googling for it I've found no solution. Anybody as ideas to share on how to make this work?
I'm evaluating alternatives to build desktop apps in Python and, though I haven't made up my mind, Kiwi seems to stand out in the croud. It's a shame it seems not many people are using it, and that it doesn't work with pyinstaller. I haven't made any contacts yet with the kiwi people. You can find kiwi at: http://www.async.com.br/projects/kiwi/ Python 2.4.3 Win XP pyinstaller-1.3 kiwi-1.9.11 I get an exe that is silent and a warning file that I'm afraid is very much over my head. Any ideias? Txs, Miguel The warning file: """ W: no module named posix (conditional import by os) W: no module named gdk (top-level import by gtk) W: no module named ltihooks (top-level import by gtk) W: no module named gtk.gdk (top-level import by kiwi.ui.objectlist) W: no module named kiwi.ValueUnset (top-level import by kiwi.datatypes) W: no module named readline (delayed import by pdb) W: no module named pwd (delayed, conditional import by posixpath) W: no module named gestalt (conditional import by ctypes) W: no module named posix (delayed, conditional import by iu) W: no module named readline (delayed, conditional import by cmd) W: no module named org (top-level import by copy) W: no module named _emx_link (conditional import by os) W: no module named fcntl (top-level import by tempfile) W: no module named Carbon (conditional import by tempfile) W: delayed conditional __import__ hack detected at line 0 - kiwi.python (C:\src\kiwi-1.9.11\kiwi\python.pyc) W: __all__ is built strangely at line 0 - __future__ (C:\Python24\lib \__future__.pyc) W: delayed exec statement detected at line 0 - pdb (C:\Python24\lib \pdb.pyc) W: delayed conditional eval hack detected at line 0 - pdb (C: \Python24\lib\pdb.pyc) W: delayed eval hack detected at line 0 - pdb (C:\Python24\lib \pdb.pyc) W: delayed conditional eval hack detected at line 0 - pdb (C: \Python24\lib\pdb.pyc) W: delayed eval hack detected at line 0 - pdb (C:\Python24\lib \pdb.pyc) W: delayed __import__ hack detected at line 0 - kiwi.environ (C:\src \kiwi-1.9.11\kiwi\environ.pyc) W: delayed __import__ hack detected at line 0 - kiwi.environ (C:\src \kiwi-1.9.11\kiwi\environ.pyc) W: __all__ is built strangely at line 0 - dis (C:\Python24\lib \dis.pyc) W: delayed __import__ hack detected at line 0 - encodings (C: \Python24\lib\encodings\__init__.pyc) W: __all__ is built strangely at line 0 - re (C:\Python24\lib\re.pyc) W: delayed __import__ hack detected at line 0 - ctypes (C: \Python24\lib\site-packages\ctypes\__init__.pyc) W: delayed __import__ hack detected at line 0 - ctypes (C: \Python24\lib\site-packages\ctypes\__init__.pyc) W: delayed conditional __import__ hack detected at line 0 - doctest (C: \Python24\lib\doctest.pyc) W: delayed exec statement detected at line 0 - doctest (C: \Python24\lib\doctest.pyc) W: delayed eval hack detected at line 0 - os (C:\Python24\lib\os.pyc) W: delayed conditional __import__ hack detected at line 0 - unittest (C:\Python24\lib\unittest.pyc) W: delayed conditional __import__ hack detected at line 0 - unittest (C:\Python24\lib\unittest.pyc) W: __all__ is built strangely at line 0 - tokenize (C:\Python24\lib \tokenize.pyc) W: delayed conditional exec statement detected at line 0 - iu (C: \pyinstaller-1.3\iu.pyc) W: delayed conditional exec statement detected at line 0 - iu (C: \pyinstaller-1.3\iu.pyc) W: delayed eval hack detected at line 0 - gettext (C:\Python24\lib \gettext.pyc) W: delayed conditional eval hack detected at line 0 - warnings (C: \Python24\lib\warnings.pyc) W: delayed conditional __import__ hack detected at line 0 - warnings (C:\Python24\lib\warnings.pyc) W: delayed exec statement detected at line 0 - bdb (C:\Python24\lib \bdb.pyc) W: delayed eval hack detected at line 0 - bdb (C:\Python24\lib \bdb.pyc) W: delayed eval hack detected at line 0 - bdb (C:\Python24\lib \bdb.pyc) """ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
