Reputation: 13
I'm trying to install Opencv to my Anaconda (MacOS) with the following line:
conda install -c conda-forge opencv
But it shows me UnsatisfiableError and I don't know how to fix it:
UnsatisfiableError: The following specifications were found to be incompatible with each other:
- pkgs/main/osx-64::anaconda==2019.03=py37_0 -> importlib_metadata==0.8=py37_0
- pkgs/main/osx-64::importlib_metadata==0.8=py37_0
- pkgs/main/osx-64::path.py==11.5.0=py37_0 -> importlib_metadata[version='>=0.5']
Maybe someone knows how to fix it?
Upvotes: 1
Views: 95
Reputation: 20472
Looks like this is an open issue. You could either try to:
pip
instead to install opencv
Upvotes: 1