Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting: tensorflow is not a supported wheel on this platform

Tags:

tensorflow

I tried installing tensorflow on my system, but I received the following error:

tensorflow-0.5.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform

Exception Information captured in pip.log file:-


/home/gansai/tensorflow/bin/pip run on Wed Nov 11 00:19:05 2015

tensorflow-0.5.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.

Exception information: Traceback (most recent call last):

File "/home/gansai/tensorflow/local/lib/python2.7/site-packages/pip/basecommand.py", line 122, in main status = self.run(options, args)

File "/home/gansai/tensorflow/local/lib/python2.7/site-packages/pip/commands/install.py", line 269, in run InstallRequirement.from_line(name, None))

File "/home/gansai/tensorflow/local/lib/python2.7/site-packages/pip/req.py", line 168, in from_line raise UnsupportedWheel("%s is not a supported wheel on this platform." % wheel.filename)

UnsupportedWheel: tensorflow-0.5.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.


What could I do to install tensorflow and start experimenting it?

like image 953
a3.14_Infinity Avatar asked Nov 10 '15 18:11

a3.14_Infinity


People also ask

Does Python 3.10 support TensorFlow?

@I'mahdi, I do know that tensorflow supports Python 3.10.

Does Python 3.7 support TensorFlow?

TensorFlow is tested and supported on the following 64-bit systems: Python 3.7–3.10.

Does Python 3.8 support TensorFlow GPU?

Tensorflow does not support Python 3.8 at the moment. The latest supported Python version is 3.7. A solution is to install Python 3.7, this will not affect your codes since Python 3.7 and 3.8 are very similar.


1 Answers

I guess pip3 is being used for installation
it can be solved by using pip2.7

I followed the steps in here

hope it helps you:)

like image 91
Sasidhar Boddeti Avatar answered Oct 04 '22 17:10

Sasidhar Boddeti