缺少 com.apple.xbs 文件夹,如何获取?
Missing com.apple.xbs folder, how do I get it?
/Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1504.81.100/AppKit.subproj/NSBitmapImageRep.m:1296
导致 Mac OS 上的简单 PyQt5 Python 3 程序出错。我怎样才能下载这个文件?
2017-03-23 22:50:20.703 Python[94924:2805073] *** Assertion failure in - [NSBitmapImageRep initWithCGImage:], /Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1504.81.100/AppKit.subproj/NSBitmapImageRep.m:1296
2017-03-23 22:50:20.734 Python[94924:2805073] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgImage != NULL'
听起来您遇到了 QT 中的错误:https://bugreports.qt.io/browse/QTBUG-58344
根据报告,它应该在 QT 5.8.1 中得到修复
回答提出的字面问题:NSBitmapImageRep 是 AppKit 框架中的一个 class,当应用程序在 Mac 上运行时 QT 使用它。正如引用的 reddit 用户提到的:您的系统上没有源文件,即使是暂时的。如果您将报告提交给 QT 或 Apple,这些崩溃报告中包含的行号用于诊断问题。
/Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1504.81.100/AppKit.subproj/NSBitmapImageRep.m:1296
导致 Mac OS 上的简单 PyQt5 Python 3 程序出错。我怎样才能下载这个文件?
2017-03-23 22:50:20.703 Python[94924:2805073] *** Assertion failure in - [NSBitmapImageRep initWithCGImage:], /Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1504.81.100/AppKit.subproj/NSBitmapImageRep.m:1296
2017-03-23 22:50:20.734 Python[94924:2805073] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgImage != NULL'
听起来您遇到了 QT 中的错误:https://bugreports.qt.io/browse/QTBUG-58344
根据报告,它应该在 QT 5.8.1 中得到修复
回答提出的字面问题:NSBitmapImageRep 是 AppKit 框架中的一个 class,当应用程序在 Mac 上运行时 QT 使用它。正如引用的 reddit 用户提到的:您的系统上没有源文件,即使是暂时的。如果您将报告提交给 QT 或 Apple,这些崩溃报告中包含的行号用于诊断问题。