How to install tensorflow with python 3.8
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?
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