I used pip to get .whl file for numpy
pip wheel --wheel-dir=./ numpy
and I have got numpy-1.13.3-cp27-cp27mu-linux_armv7l.whl
Let's split package names by components:
This means that package numpy
contains binary extensions written in C
and compiled for specific processor, OS and Python version.
The following package is pure Python:
The wheel filename is {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.whl
.
Distribution name, e.g. 'django', 'pyramid'.
Distribution version, e.g. 1.0.
Optional build number. Must start with a digit. A tie breaker if two wheels have the same version. Sort as the empty string if unspecified, else sort the initial digits as a number, and the remainder lexicographically.
E.g. 'py27', 'py2', 'py3'.
E.g. 'cp33m', 'abi3', 'none'.
E.g. 'linux_x86_64', 'any'.
reference is here.