I get the error as "numpy is not a supported wheel on this platform" I tried to install numpy of 32 as well as 64 bit but both failed. My system is 64 bit.
I tried to get the answer from this website but all in vain. Following is the answer i got.
import pip; print(pip.pep425tags.get_supported())
[('cp27', 'cp27m', 'win32'), ('cp27', 'none', 'win32'), ('py2', 'none', 'win32'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]
>>> import platform; print(platform.platform())
Windows-7-6.1.7601-SP1
How do I install numpy in python?