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
because I am using ARM platform, but when run pip for protobuf
pip wheel --wheel-dir=./ protobuf
I got protobuf-3.4.0-py2.py3-none-any.whl
So, why isn't linux_armv7l
like the case of numpy, I didn't alter the machine and searched for that difference but no information.
thanks for advice .
python3 setup.py bdist_wheel
creates apy3
wheel by default.python3 setup.py bdist_wheel --universal
creates apy2.py3
wheel, if possible). – Stereography