I can't install opentimeline io using pip #1342
-
Hi, i'm tring to install opentimelineio on my macOS 12.4 using pip and it fail building building wheels
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
Looking at the long output (which I see in email, but not on the GitHub web site for some reason) I see a couple of clues that might help:
Also, I believe that Apple no longer ships Python since macOS 12.4, but you seem to have Python installed in "/Library/Frameworks/Python.framework/Versions/3.9" which implies that you installed Python via the standard Python installer. That may be a configuration that we haven't tested before. We generally recommend using either miniconda or pyenv to install an isolated Python environment. I don't know if that will make a difference, but it could be something to try. It is possible that upgrading pip (the first bullet point above) could resolve the wheel issue. If that works and you're able to get a pre-built wheel that would be ideal, since it would skip the other issues. |
Beta Was this translation helpful? Give feedback.
-
I think I'm having a similar issue but not on macOS. Going through the installation for otio (windows machine) and am getting the following error. |
Beta Was this translation helpful? Give feedback.
-
@AustinWongParker I notice in your log that cmake is trying to build in a mingw environment, and failing with an nmake generator step. We've only tested building otio on windows with a "traditional" msvc environment. Are you running from a visual studio command prompt when you run pip install? |
Beta Was this translation helpful? Give feedback.
-
@MichaelPlug were you able to get OpenTimelineIO installed and running? |
Beta Was this translation helpful? Give feedback.
Looking at the long output (which I see in email, but not on the GitHub web site for some reason) I see a couple of clues that might help:
python3 -m pip install --upgrade -pip
should bepython3 -m pip install --upgrade pip
(without the "-" before "pip")Also, I believe that Apple no longer ships Python since macOS 12.4, but you seem to have Python installed in "/Library/Frameworks/Python.framework/Versions/3.9" which implies that you installed Python via the standard Python installer. That may be a configuration that we haven…