I'm trying to install Tensorflow on Windows 10 Pro 64 bit with Python 3.6 and pip 18.1 versions. I followed the options given in similar posts and tried with
pip3 install --upgrade tensorflow
pip install --upgrade tensorflow
Both options giving me the error, "Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow"
I also tried to install from the original wheel.
- pip install https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
which gave me the error, "tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform."
Appreciate any help to locate identify the issue here.
python -c "from pip._internal import pep425tags; print(pep425tags.get_supported())"
return? – hoeflingcp36
notcp35
. For Python 2.7 you needcp27
– TheWaveLad