installation fails in macOS 10.15.7 #38
-
Hi all, I am trying to install openvino notebooks in my iMac running macOS 10.15.7, but installation step 4 fails, giving me the following error: Building wheels for collected packages: editdistance There is a lot more lines of error following the above one but dont know if they are relevant or not. I am attaching a log file with the output I got. Hope someone can help me to find out whats going wrong. Regards, Eduardo. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Yikes! Thanks for reporting the issue and attaching the log! In the logs I see "#error architecture not supported" . That is similar to this issue reported on StackOverflow: https://stackoverflow.com/questions/64364310/how-do-i-resolve-error-architecture-not-supported-during-pip-install-psutil The answer there suggests that prepending the pip install command with |
Beta Was this translation helpful? Give feedback.
-
Wow upvoting this!!! (@ryanloney - documentation can be updated to say it works on 10.15.7 with that new pip install command) |
Beta Was this translation helpful? Give feedback.
Yikes! Thanks for reporting the issue and attaching the log! In the logs I see "#error architecture not supported" . That is similar to this issue reported on StackOverflow: https://stackoverflow.com/questions/64364310/how-do-i-resolve-error-architecture-not-supported-during-pip-install-psutil The answer there suggests that prepending the pip install command with
ARCHFLAGS="-arch x86_64"
should work. Could you try that? Instead ofpip install openvino-dev
you would then doARCHFLAGS="-arch x86_64" pip install openvino-dev