Make sure the app runs from the build directory first. I've run into this many times and it's usually because the app isn't working from the build directory.
-Scott On Fri, May 18, 2012 at 9:51 AM, stefan ix <[email protected]> wrote: > When I make my app (a python terminal app, I want to be able to start from > the finder) I get the following error when I try to run it: > > mbxa:other noema$ open > /Users/noema/Development/git/LasaurApp/other/dist_osx/lasaurapp.app > LSOpenURLsWithRole() failed with error -10810 for the file > /Users/noema/Development/git/LasaurApp/other/dist_osx/lasaurapp.app. > > Any ideas where the problem is? > > My spec file looks like this: > > ### build TOC > a = Analysis(['../backend/app.py'], > pathex=[os.path.abspath(__file__)], > hiddenimports=[], > hookspath=None) > > > pyz = PYZ(a.pure) > exe = EXE(pyz, > a.scripts, > a.binaries, > a.zipfiles, > a.datas + resource_files, > name=target_location, > debug=False, > strip=None, > upx=True, > console=True ) > > app = BUNDLE(exe, > name=target_location + '.app') > > Thanks for any hints, > > -- > You received this message because you are subscribed to the Google Groups > "PyInstaller" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/pyinstaller/-/sNc3ZCZUNxAJ. > 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. > -- 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.
