On Friday 19 May 2006 15:10, oyster wrote:
> fire up on my chinese windows, however the exe file quits while saying
> "no attribute bind" or something else( sorry, it disappears so
> quickly).
> So any hints? thank you.

The first thing you'll want to do is to rebuild your EXE with the console 
option turned on. Somewhere in your spec file you'll have a line which looks 
like this:

exe = EXE(pyz,
          a.scripts,
          exclude_binaries=1,
          name='bibus')

Change this so that you have:

exe = EXE(pyz,
          a.scripts,
          exclude_binaries=True,
          console=True,
          name='bibus')

This will give you an executable which opens a command-prompt style window 
when you run it. With luck, you will be able to see a more helpful error 
message in the command prompt window.

-- 

Regards

Phil Edwards
Brighton, UK
_______________________________________________
PyInstaller mailing list
[email protected]
http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller

Reply via email to