Skip to content Skip to sidebar Skip to footer

Getting Error For Importing Numpy At Python 3.5.1

I have installed numpy-1.11.0b3 by, pip install 'numpy-1.11.0b3+mkl-cp35-cp35m-win32.whl'. The installation became successful. But, when I write 'import numpy' at the Python Shell

Solution 1:

It may be possible that you have have installed pip for some lower version of python. To check it first look for your default python version by:

$python

Now check for your linked version of python with pip

$pip --version

Now see if the two python versions match. If they don't match then, you need to upgrade you pip :

$pip install -U pip

Now install numpy for this:

sudo pip install numpy

Hope this helps !


Post a Comment for "Getting Error For Importing Numpy At Python 3.5.1"