import cv2出现的ImportError: numpy.core.multiarray failed to import

解决方法:降低numpy版本

#python3
pip3 install -U numpy==1.12.0

#python2
pip install -U numpy==1.12.0

猜你喜欢

转载自blog.csdn.net/dlhlSC/article/details/88021039