I'm trying to package a Kivy/Python application on Yosemite with pyinstaller (OSX 10.10, Kivy 1.9, pyinstaller 2.1) and not having much success, via the Kivy OSX package how-to. After troubleshooting my PYTHONPATH to make sure it included Kivy and all the dependencies, I tried just building their demo touchtracer app, since it's used in the example.
Whatever I build into a package for OSX doesn't run. The console just returns:
com.apple.xpc.launchd1: (com.apple.xpc.launchd.oneshot.0x10000017.mypython-app[15589]) Service exited with abnormal code: 255
As far as I can see the specfile build and the .app package build go fine, except for these two different errors while building the specfile:
WARNING: library user32.dll required via ctypes not found
and then this bit about not finding Python:
7246 ERROR: Can not find path @executable_path/../.Python (needed by /Applications/Kivy.app/Contents/Resources/python)
7246 INFO: Using Python library /System/Library/Frameworks/Python.framework/Versions/2.7/Python
7246 INFO: Adding Python library to binary dependencies
...
8489 ERROR: Can not find path @executable_path/../.Python (needed by /Applications/Kivy.app/Contents/Resources/python)
I assume it's an issue with the path, but not sure exactly what it's looking for (aside from Python?) or how to remedy this. Otherwise it's finding all the other libraries just fine. Any ideas?
So even though I don't have my app working still, I've technically answered this question. For whatever reason pyinstaller 2.1 wasn't able to properly find Python or Kivy. When I downloaded pyinstaller 2.0 and ran that, everything built properly.
Instead of getting those "Can not find path" errors, I now get happy looking output like
So now I just need to troubleshoot and figure out why the app launches and crashes instantly, outputting this to console:
That's for another question though, I suppose.