wwwald píše v St 16. 02. 2011 v 01:13 -0800: > Hello, > > I'm still wondering what's causing this. Could someone suggest a way > to find out what exactly is going wrong? What are the first steps in > debugging a case like this?
The first step would be to compare the files which are packaged by pyinstaller when using onefile and onedir mode. In onefile mode the exe is unpacked to a temp directory and when the app is closed this folder is removed. so you could use in the python code the following sample to get the path to folder, where it is inpacked: ---- import os import time print "Path to unpacked files in onefile mode:" print os.environ["_MEIPASS2"] time.sleep(3600) ---- > > Thanks a lot, > wwwald -- 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.
