Using pip to install tensorflow: tensorflow — is not a supported wheel on this platform

Install TensorFlow using VirtualEnv:
From https://pypi.python.org/pypi/tensorflow to download the corresponding version of the tensorflow: tensorflow 1.3.0 – cp27 – cp27mu – manylinux1_x86_64. WHL;
PIP install –upgrade tensorflow-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl;

Tensorflow-1.3.0-CP27-CP27mu-manylinux1_x86_64. WHL is not a supported wheel on this platform.


The reference blog: http://blog.csdn.net/qing101hua/article/details/52504403
After changing the file name to tensorflow-1.3.0-cp27-none-linux_x86_64.whl, execute the command:
PIP install --upgrade
to continue...


Read More: