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