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?

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

2 Answers 2

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

Sign up to request clarification or add additional context in comments.

Comments

1

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

pip3 install tensorflow 

6 Comments

my python version is 3.6.9 but even when I run it with pip3, the same error occurs.
i read another article about your problem and found out tensorflow only supports 64bit version of python. This may be the case
I'm running on 64-bit
|

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.