I\'m new to programming and following a course where I must install Tensorflow. The issue is that I\'m using Python 3.8 which I understand isn\'t supported by Tensorflow.
Tensorflow is only supported until python 3.7 as of now. You can check it here: https://www.tensorflow.org/install/pip
But there is a way to install it on Python3.8, just run the below command that will do your job:
python -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
This command work on mac and windows both, I haven't tested on Linux.