1 | initial version |
I ran into a similar issue. Here's the things I had to do to get from the bad state I was in to a working state:
brew install opencv
" was failing by saying it couldn't write to /usr/local/bin so I had to run "sudo chown -R $USER /usr/local/bin
".sudo chown -R $USER /usr/local/include
" liberally. Once those two folders were writable, brew install opencv
succeeded.After that, I was able to import cv2
in my project and do opencv things.