Replies: 2 comments
-
|
i have fix the wrong |
Beta Was this translation helpful? Give feedback.
-
|
Based on the screenshot, this does not appear to be a hardware report export failure. Instead, it looks like a software bug in OpCore-Simplify during the hardware compatibility check phase. What the Error Shows The traceback ends with: AttributeError: 'NoneType' object has no attribute 'split' Specifically: major, minor, patch = map(int, darwin_version.split('.')) The variable darwin_version is None, but the script expects a version string such as: 24.0.0 As a result, the compatibility checker crashes before completing the report generation. Likely Causes
Your previous screenshot showed: Intel Core Ultra 7 155H Intel Arc graphics are currently unsupported by macOS. The script may not have a compatibility entry for this hardware and is returning a null value instead of a valid macOS version.
The compatibility checker is not handling unsupported devices properly. Instead of: None it should return: Unsupported or gracefully stop processing.
The script may have failed to identify: GPU model resulting in an empty value. Troubleshooting Steps Download the latest release from the project repository. Many compatibility-checking bugs are fixed between releases. Step 2: Run as Administrator Open: Command Prompt Then launch the script again. Step 3: Generate a Hardware Report Manually Use: wmic cpu get name or dxdiag Save the results and compare them with what OpCore-Simplify detects. Step 4: Check the Source Code The traceback points to: Scripts\compatibility_checker.py and Scripts\utils.py Add a validation check before: darwin_version.split('.') Example: if darwin_version is None: This prevents the crash. Workarounds The key clue from the screenshot is the NoneType object has no attribute split error. That points to a missing compatibility value in the script, making this primarily a software compatibility-checking bug rather than a hardware failure. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
who knows what happen?
Beta Was this translation helpful? Give feedback.
All reactions