Bertrand Servin píše v Út 19. 07. 2011 v 13:48 +0200: > -- on the Debian machine: > thisfile is ./metamap > _MEIPASS2 (workpath) is NULL > homepath is ./ > Extracting binaries > Executing self as child with /tmp/_MEIqvdjVB/ > Back to parent... > > any clues here ? > thanks a lot
Do you use onefile or onedir mode? Pyinstaller uses two processes to run the frozen application: 1. process to set up environment for the python app 2. child process with your python app When your app quits, the first process will cleanup the environment. >From the output: - first process is running fine - when it tries to run your app as child process, this seems to fail Could you, please, verify that on the other testing system you are able to run executables from /tmp directory? Because when using onefile mode, the app is unpacked at runtime to /tmp and then executed from there. When quits it is deleted. Or it could be something with permissions. -- 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.
