I I'm following this tutorial to start with YOLOV4: https://www.youtube.com/watch?v=5pYh1rFnNZs
But when trying to import OpenCV with "import cv2" in python terminal the following message appears:
** On entry to DGEBAL parameter number 3 had an illegal value
** On entry to DGEHRD parameter number 2 had an illegal value
** On entry to DORGHR DORGQR parameter number 2 had an illegal value
** On entry to DHSEQR parameter number 4 had an illegal value
ImportError: numpy.core.multiarray failed to import
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\LUCINALDO\AppData\Local\Programs\Python\Python37\lib\site-packages\cv2\__init__.py", line 5, in <module>
from .cv2 import *
ImportError: numpy.core.multiarray failed to import
I already tried to update numpy, OpenCV or install other libraries but the error persists. What am I doing wrong?