0

I try to

pip install --user --upgrade pip

pip install tensorflow

pip3 install tensorflow

Terminal

Add python interpreter

Settings

RunDebugConfigurations

Available packages Collecting tensorflow Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow enter image description here

Ravisut
  • 39
  • 8

2 Answers2

1

Ravisut,

You seem to be entering right commands. Based on your inputs it looks like you have a 32-bit Python version installed. Tensorflow is only supported on Python 64-bit. So install the 64-bit version of Python and try again.

After that if you still have issues - try this thread: TensorFlow not found using pip

In particular, try installing with whl file: python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.1.0-cp37-cp37m-manylinux2010_x86_64.whl
you may need to pick relevant TF version () here: https://www.tensorflow.org/install/pip

Poe Dator
  • 4,535
  • 2
  • 14
  • 35
0

install Python 3.7 64-bit and pip install tensorflow ...are Successfully

enter image description here

Ravisut
  • 39
  • 8