库未加载:@rpath/libopenblasp-r0.2.19.dylib

Library not loaded: @rpath/libopenblasp-r0.2.19.dylib

我应该如何解决这个问题?

Monas-MacBook-Pro:02_02 mona$ python
Python 3.6.1 |Anaconda custom (x86_64)| (default, May 11 2017, 13:04:09) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: dlopen(/Users/mona/anaconda/lib/python3.6/site-packages/cv2.cpython-36m-darwin.so, 2): Library not loaded: @rpath/libopenblasp-r0.2.19.dylib
  Referenced from: /Users/mona/anaconda/lib/libopencv_hdf.3.2.0.dylib
  Reason: image not found

安装 opencv 使用:

conda install -c conda-forge opencv=3.2.0 

甚至尝试过:

$ conda install -c anaconda openblas=0.2.19
Fetching package metadata ...........
Solving package specifications: .

Package plan for installation in environment /Users/mona/anaconda:

The following NEW packages will be INSTALLED:

    libgfortran: 3.0.0-1       anaconda   
    openblas:    0.2.19-1      anaconda   

The following packages will be SUPERSEDED by a higher-priority channel:

    conda:       4.3.22-py36_0 conda-forge --> 4.3.22-py36_0 anaconda
    conda-env:   2.6.0-0       conda-forge --> 2.6.0-0       anaconda

Proceed ([y]/n)? y

conda-env-2.6. 100% |################################| Time: 0:00:00  90.59 kB/s
libgfortran-3. 100% |################################| Time: 0:00:00 387.65 kB/s
openblas-0.2.1 100% |################################| Time: 0:01:03 107.62 kB/s
conda-4.3.22-p 100% |################################| Time: 0:00:00 596.24 kB/s

但是还是一样的错误。 这是我的 conda list https://pastebin.com/gP0F0Qnz 的输出 我应该如何修复才能import cv2?

莫娜

您似乎没有安装 openblas,它是 opencv 的必需模块,但不知何故未包含在其依赖项中,因此您必须手动安装它,您可以通过 conda list|grep openblas[ 确认=12=]

如果您没有 openblas,请使用以下命令安装它: conda install -c conda-forge openblas=0.2.19

希望对您有所帮助