Pip install numpy does not work: "No suitable distribution found"

I am new to python. I installed Python 2.7.10 and it already has a pip. I tried running this command to load the numpy library.

D:\workspace\python>pip install numpy Collecting numpy Could not find a version that satisfies the requirement numpy (from versions: ) No matching distribution found for numpy 

But I got this error. How can i solve this? And I want the difference between easy_install and pip.

Thanks in advance.

+7
python windows
source share
2 answers

I recommend simply downloading the NumPy installer instead of installing it from the source, unless you have a specific need for this. Windows Installers for NumPy 1.9.2 can be found here:

Regarding the difference between easy_install and pip, easy_install came first. People in the Python community had a difference of opinion and pip. Pip is just an alternative to easy_install. For a good comparison of the two of them, see the following:

+3
source share

I used to encounter the same problem. I did pip install numpy several times, then worked

0
source share

All Articles