Adam
Adam

Reputation: 33

ImportError: numpy.core.multiarray failed to import (cv2)

I tried 3 versions of python and deferent versions of Numpy, OpenCv-Python and I still become the same error

Upvotes: 3

Views: 9145

Answers (1)

Nemanja Stojanovic
Nemanja Stojanovic

Reputation: 126

I fixed this issue by uninstalling numpy

pip uninstall numpy

and after installing the previous version of numpy

python -m pip install numpy==1.19.3

Upvotes: 2

Related Questions