I am packaging up an app using CEFPython on OS X using py2app, but I'm getting a crash during the Initialize call. I specify cefpython3 as a package to py2app, which causes it to copy the entire cefpython3 folder into the app's Resources/lib/python2.7 directory, the same dir as site-packages.zip.
Googling the problem, i found some reports that suggest that the issue could be with finding the locale files, which are in the Resources subdir of the package. I tried copying those files into the app's main Resources folder, but it did not have any effect.
Are the resources supposed to go in some other folder, or do I need to put the dylibs in the Framework folder, or somewhere else? Has anyone succeeded in wrapping cefpython3 into an OS X app before?
Any general advice on how to debug this problem or get more info without crashing would be appreciated as well. :)
Thanks,
Kevin
I used the pyinstaller packager . My bundle crashed so many times using the py2app and it was a painful effort and lots of experimental technique ;->