How to install tensorflow with python 3.8

853    Asked by RutujaMishra in Python , Asked on Apr 3, 2021

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 to install TensorFlow Python 3.8?

Answered by Rutuja Mishra

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

You can use the pip command to install TensorFlow Python 3.8, first update the pip, then install:

pip install --upgrade pip

pip install --upgrade tensorflow



Your Answer

Interviews

Parent Categories