I tried installing tensorflow using the command pip install tensorflow
it gave the error two error as:-
- ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
- ERROR: No matching distribution found for tensorflow
Then I used the command pip3 install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-2.3.0-cp38-cp38-win_amd64.whl
which again gave a single error as:-
- ERROR: tensorflow_gpu-2.3.0-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.
Finally, I tried downloading its latest WHL file and used the command pip install tensorflow_gpu-2.3.0-cp38-cp38-win_amd64.whl
from the same directory, still, I am getting the error 'ERROR: tensorflow_gpu-2.3.0-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.' and it's not installing.
I am using python 3.8.5, most of the answers are old for this topic and instructed to downgrade python as tensorflow wasn't available for python 3.8 but now it's available but still, I am facing this issue. Please help.