0

我正在尝试在 MacO 上安装 OpenCV 我正在学习本教程 http://www.jeffreythompson.org/blog/2013/08/22/update-installing-opencv-on-mac-mountain-lion/

当我到达这一点时,我得到了这个错误

$ brew install opencv

opencv: Unsatisfied dependency: numpy
External Python cannot `import numpy`. Install with:
  pip-2.7 install numpy
Error: An unsatisfied requirement failed this build.

我使用 https://github.com/fonnesbeck/ScipySuperpack安装了 NumPy, 我也使用过:

$ git clone https://github.com/numpy/numpy.git
$ git clone https://github.com/scipy/scipy.git
$ cd numpy
$ python setup.py build && python setup.py install
$ brew install gfortran
$ cd ../scipy
$ python setup.py build && python setup.py install

当我去安装 OpenCV 时,我遇到了这个问题:

$ brew install opencv
opencv: Unsatisfied dependency: numpy
External Python cannot `import numpy`. Install with:
  pip-2.7 install numpy

但我仍然遇到同样的问题

4

1 回答 1

0

您的问题的一个可能原因是您的系统上有多个 python 版本(OSX 和您的 SciPy superpack 安装附带的默认安装,以及可能的其他版本)并且 brew 找不到您拥有 Numpy 的安装。

我建议通过Macports安装 OpenCV ,这将为您省去很多与选择要使用的 python 版本相关的麻烦。

于 2013-10-31T23:55:17.697 回答