Error when attempting to run otioview for the first time (Mac M1) #1671
-
Apologies if this is Python 101 but I'm getting the following error when I attempt to run otioview... Fuller picture... I have uninstalled and reinstalled packages a couple of times... (because I subsequently get
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Here's chatgpt3.5 answer... The error message you're encountering is related to a compatibility issue with the PySide version used by OpenTimelineIO (OTIO) and its dependencies. It seems like there might be a conflict in the Qt libraries. To resolve this issue, you can try the following steps:
Keep in mind that the error message indicates a compatibility issue with PySide, so ensuring that all components are compatible and properly aligned in your Python environment is crucial to resolve this error. |
Beta Was this translation helpful? Give feedback.
You can edit "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/opentimelineview/console.py" and change line 222 from:
navigation_menu.triggered[[QAction]].connect(__callback)
to
navigation_menu.triggered.connect(__callback)
And it will at least launch for me. Haven't spent enough time looking at it to know if that should be a permanent fix.