When I tried to install opneCV3 on my Mac to run PaintsChainer, I got an error, and when I looked it up, there was no Japanese article, so I'll leave it as a note.
brew install opencv3 --with-python3
...
Error: opencv3: Does not support building both Python 2 and 3 wrappers
Details: install opencv3 on mac for python 3.6
brew install opencv3 --with-python3 --without-python
I needed --without-python
.
As you can see from the error content, you can only install it for either python or python3.
This time I wanted to install it for use with python3, so I solved it with --without-python
.
Recommended Posts