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.
Uninstall all your python versions and use the latest anaconda.
$ conda create --name tensorflow python=3.5
This way you create a virtual environment with python 3.5 which is supported by tensorflow.
So now you can install it.
$ activate tensorflow (tensorflow) $ pip install tensorflow