【发布时间】:2023-03-25 11:26:01
【问题描述】:
我正在尝试在 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
但我仍然遇到同样的问题
【问题讨论】:
标签: c++ python macos opencv numpy