如何使用 conda 为 python3 安装 opencv3?
How can I install opencv3 for python3 with conda?
我尝试在 mac 上安装带有 conda 的 opencv3。 python2.7 似乎安装了 opencv。实际上我用
删除了它
brew uninstall opencv
这是
的错误
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.
因为我只需要 python 版本的 opencv
pip install opencv-python
工作正常。感谢@Max
我尝试在 mac 上安装带有 conda 的 opencv3。 python2.7 似乎安装了 opencv。实际上我用
删除了它brew uninstall opencv
这是
的错误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.
因为我只需要 python 版本的 opencv
pip install opencv-python
工作正常。感谢@Max