Prashant, I've downloaded ur application, and built it in debug mode, and as i initially suggested, the reason why you exe is not "working" is because of missing imports.
The other thing i'd suggest is that you install pyinstaller from svn (thats what i'm using) the 1.3 download is a bit dated in terms of features and bug fixes Cheers! Below are the files/commands i used to re-create the installation **** shaderbox.py ****** #!/usr/bin/python #Copyright (C) 2006-2008 Pantheon Studios Pvt. Ltd. #web : http://www.pantheon-studios.in/shaderbox #version : 0.2 Beta import wx import wx.lib import wx.lib.flatnotebook import wx.stc import shelve import wx.lib.dragscroller import xml from core import * import ShaderBox **** makespec.py command line ***** d:\misc\lib\PyInstaller\makespec.py --windowed --onefile --out=D:\work \projects\ShaderBox\build --debug D:\work\projects\ShaderBox \shaderbox.py **** build.py command line ****** python -O d:\misc\lib\PyInstaller\build.py D:\work\projects\ShaderBox \build\shaderbox.spec ****** the generated spec file ********* # -*- mode: python -*- a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(HOMEPATH,'support\\useUnicode.py'), 'D:\\work\\projects\ \ShaderBox\\shaderbox.py'], pathex=['D:\\work\\projects\\ShaderBox\\build']) pyz = PYZ(a.pure) exe = EXE( pyz, a.scripts, a.binaries, a.zipfiles, name=os.path.join('dist', 'shaderbox.exe'), debug=True, strip=False, upx=False, console=True ) On Oct 7, 7:41 pm, King <[EMAIL PROTECTED]> wrote: > Still no success..... > > If some one can have a look into my application then may be we can > find a solution. > You can download the application for windows from here: > > http://pantheon-studios.in/shaderbox/Download.html > > Thanks > > Prashant --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
