Hallo Nathan! > > You can see output from the app bundle in the Console > (/Applications/Utilities/Console). Hopefully there will be an error > message that sheds some light on the problem. > > No, there is unfortunately no output at all because it stops immediatly ...
However, it seemed to be a path problem, as I noted in this ticket: http://www.pyinstaller.org/ticket/604 <cite> I added a starter script in MyApp.app/Contents/MacOS, pointed the executable in Info.plist to this script and it works now for me (for my detailed setup see previous comment): #!/bin/bash cd "${0%/*}" ./my_main_binary_name So it seems to be a path problem. As my project uses some external dynamic libraries, they don't load without this starter script. </cite> LG Georg -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/groups/opt_out.
