corpnewt / ProperTree

Cross platform GUI plist editor written in python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

'The application cannot be opened for an unexpected reason'

twio142 opened this issue · comments

Error message:

The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10810 "kLSUnknownErr: Unexpected internal error" UserInfo={_LSFunction=_LSLaunchWithRunningboard, _LSLine=2756, NSUnderlyingError=0x6000027f8de0 {Error Domain=RBSRequestErrorDomain Code=5 "Launch failed." UserInfo={NSLocalizedFailureReason=Launch failed., NSUnderlyingError=0x6000027f8e40 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory" UserInfo={NSLocalizedDescription=Launchd job spawn failed}}}}}

Can you provide any more info? I've not seen anything like this before.

What OS, what py version, where did you get py from , are you running the .command or a built .app, etc?

macOS Ventura 13.1,

Python 3.10.8 (miniconda)

The error above comes from opening a built ProperTree.app.

Running ProperTree.command throws ModuleNotFoundError: No module named 'Tkinter' and ModuleNotFoundError: No module named '_tkinter'.

Seems like that python distribution doesn't include tkinter, which is the module used by ProperTree for the gui. You can try installing py from python.org and building the app pointed to that version.

Oh right, running buildapp-select solved the problem. Thanks!