1

I am trying to install tensorflow, but when I run

pip install tensorflow

I get the following error:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

In many other posts the solution is to upgrade the pip version. But mine already is version 21.1.1 and I still can not install tensorflow in my env..

What am I missing?

sudo-Boris
  • 63
  • 6
  • What is your version of Python (`python -V`)? Have you checked the requirements here https://www.tensorflow.org/install/pip ? – Rivers May 20 '21 at 13:48
  • yes I meet the requirements. Python 3.6.9, pip 21.1.1, Ubuntu 18.04. – sudo-Boris May 20 '21 at 14:21
  • Are you using a virtual environment? (you should add more informations in your question too: what platform etc.) – Rivers May 21 '21 at 12:58

2 Answers2

2

You can try this

pip install ISR --no-deps

However, have you used conda? It's really easy to install Tensorflow using it. Just

 conda install Tensorflow

(if you don't have it install from here)

Best Regards, ykostov

ykostov
  • 367
  • 1
  • 8
1

You may be using python3 instead of python 2, if so try:

pip3 install tensorflow
Nikolay Patarov
  • 305
  • 3
  • 11