TensorfloTensorflow installation error: not a supported wheel on this platformw installation error: not a supported wheel on this platform

I too got the same problem.

I downloaded get-pip.py from https://bootstrap.pypa.io/get-pip.py and then ran python2.7 get-pip.py for installing pip2.7.

And then ran the pip install command with python2.7 as follows.

For Ubuntu/Linux:

python2.7 -m pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl

For Mac OS X:

python2.7 -m pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl

This should work just fine as it did for me 🙂

I followed these instructions from here.

Leave a Comment