0

I am not that well-versed in the packages installation but my Anaconda software has been working perfectly. I tried to install the packages via this link for running Keras and Tensorflow. However, I face the same error whenever I try to install Tensorflow CPU version using the Anaconda Prompt or Command prompt.

I don't know how to deal with this. I've used

conda create -n tf tensorflow
pip install tensorflow
conda install -c conda-forge tensorflow 

The .whl files are throwing errors that it doesn't support the platform. How else should I install Tensorflow?

PS. I also added conda-forge to my channels list. Still the same error: Console showing error text

FlyingTeller
  • 17,638
  • 3
  • 38
  • 53
  • Does this answer your question? [Tensorflow installation error: not a supported wheel on this platform](https://stackoverflow.com/questions/33622613/tensorflow-installation-error-not-a-supported-wheel-on-this-platform) – turnman Feb 12 '20 at 19:15
  • Try this 1. Upgrade pippip install --upgrade pip 2. pip install tensorflow – Saurav Joshi Feb 12 '20 at 19:23
  • I tried to upgrade pip and then install tensorflow.. My pip is already up-to-date and it didn't work. :/ – Swetha Radhakrishnan Feb 13 '20 at 06:25

1 Answers1

0

Your conda is looking in win32 channels. You therefore seem to have installed anaconda as 32-bit. For 32-bit, tensorflow is not available, as you can see in the docs:

TensorFlow is tested and supported on the following 64-bit systems

Also see this github issue

If you have 32-bit windows then you need to upgrade to a 64-bit system to use tensorflow

If you have a 64-bit system but just downloaded the wrong anaconda version, go ahead and remove it and reinstall using the 64-bit installer

FlyingTeller
  • 17,638
  • 3
  • 38
  • 53