Hi Mig,
Try using something like this at the very beginning of your
python script, before doing any kiwi import:
from os.path import exists, abspath, join
from os import mkdir
dir1=join(abspath('.'),'glade')
dir2=join(abspath('.'),'pixmaps')
if not exists(dir1):
mkdir(dir1)
if not exists(dir2):
mkdir(dir2)
You might want to erase these two folders before exiting from
the programme.
Let me know how it goes ...
Cheers,
Francesco
2008/1/4, Giovanni Bajo <[EMAIL PROTECTED]>:
>
> On Thu, 2008-01-03 at 11:40 -0800, Mig wrote:
>
> > I get an exe that is silent and a warning file that I'm afraid is very
> > much over my head.
>
> Hand-edit the spec file and activate console mode (if turned off) and
> debug mode (if turned off). Then re-run Build.py, and re-run the
> executable. You should see the output, including the exception which is
> probably causing its abort.
> --
> Giovanni Bajo
>
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---