1

I want to install opencv on Windows 7 64 bit and I'm using Python 3.5.1 32-bit. I downloaded the .whl file for opencv as said in the answer in this question: Install opencv for Python 3.3 given by @user3731622. But when I try to do:

import cv2 

I get the following error:

ImportError: numpy.core.multiarray failed to import 

What am I doing wrong ?

Thanks

mata
  • 181
  • 1
  • 2
  • 10

1 Answers1

0

Are you sure it's bumpy in the error you get? multiarray is a part of numpy. In this post: ImportError: numpy.core.multiarray failed to import the solution is to install numpy. Do you have that installed?

Community
  • 1
  • 1
meetaig
  • 913
  • 10
  • 26
  • you are right the autocorrector changed it. I'll edit my question. Thanks – mata Aug 12 '16 at 12:59
  • Have you installed the `numpy` package? if not try `pip install numpy` or follow the instructions here [link](http://www.scipy.org/scipylib/download.html) – meetaig Aug 12 '16 at 13:05
  • 1
    No I haven't. I did now and everything is working. Thanks – mata Aug 12 '16 at 13:15