Back

Explore Courses Blog Tutorials Interview Questions
+1 vote
9 views
in Python by (50.2k points)
I was trying to install the TensorFlow package with the pip command on Python 3.8, and I was getting the error that TensorFlow is not found.

How can I install TensorFlow on Python 3.8?

1 Answer

–1 vote
by (108k points)

Python 3.8 is now recommending TensorFlow. Python 3.8 support requires TensorFlow 2.2 or later.

You can use the pip command for the installation, first update the pip, then install:

pip install --upgrade pip

pip install --upgrade tensorflow

For more information, kindly refer to our Python course. 

by (120 points)
it does not work(im on windows 7 32bit)
and gets same message of "Could not find that satisfies the requirements tensorflow"
i did install latest version 21.1.2 of pip in python 3.8 and doesnt work

Browse Categories

...