pip install numpy doesn't work: "No matching distribution found"

I am a newbie in Python. I installed Python 2.7.10 and it comes already with pip . I tried to run this command to download the NumPy library.

D:workspacepython>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?

I also want to know the difference between easy_install and pip .


I recommend just downloading the NumPy installer instead of installing it from source unless you have a specific need for doing so. The Windows installers for NumPy 1.9.2 can be found here:

  • http://sourceforge.net/projects/numpy/files/NumPy/1.9.2/
  • As for the difference between easy_install and pip, easy_install came first. People in the Python community had a difference of opinions and pip was born. Pip is basically just an alternative to easy_install. See the following for a good comparison of the two:

  • https://packaging.python.org/en/latest/pip_easy_install.html

  • I met same problem before. I did pip install numpy for several times then it work

    链接地址: http://www.djcxy.com/p/27998.html

    上一篇: 分页API请求,如何知道是否有另一个页面?

    下一篇: pip install numpy不起作用:“找不到匹配的分配”