Reputation: 23
I am running a python code for which I need tensorflow 2.0, but when running pip install tensorflow (or pip3), I get the following error:
Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow
I checked the tensorflow website and I'm running python version 3.7, so I tried the wheel they suggested for Windows 64-bit, CPU-only (https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow_cpu-2.0.0-cp37-cp37m-win_amd64.whl) but I get the following error now:
ERROR: tensorflow_cpu-2.0.0-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.
My system's properties are below: enter image description here
Any idea what the issue could be? Thanks!
Upvotes: 2
Views: 3147
Reputation: 94397
TensorFlow requires 64-bit Python, your Python is 32-bit. Install 64-bit Python.
TensorFlow currently support Python up to 3.7 so do not install Python 3.8. Install 64-bit Python 3.7.
Upvotes: 1