0

I tried to install opencv3 with conda on my mac. Somehow opencv seems to be installed for python2.7. Actually I removed that with

brew uninstall opencv

heres the error for

conda install -c menpo opencv3

Fetching package metadata .............
Solving package specifications: .

UnsatisfiableError: The following specifications were found to be in conflict:
  - opencv3 -> python 2.7*
  - python 3.6*
Use "conda info <package>" to see the dependencies for each package.
Mr.Sh4nnon
  • 327
  • 2
  • 20
  • 2
    Possible duplicate of [Installing opencv on Windows 10 with python 3.6 and anaconda 3.6](https://stackoverflow.com/questions/42994813/installing-opencv-on-windows-10-with-python-3-6-and-anaconda-3-6) – Max Oct 04 '17 at 06:06

1 Answers1

0

Since I only needed the python version of opencv

pip install opencv-python

worked fine. Thanks to @Max

Mr.Sh4nnon
  • 327
  • 2
  • 20