I Am Not Able To Install Tensorflow=1.4.1
Hi when I run this commands pip install tensorflow==1.4.1 It not run and give the following error Could not find a version that satisfies the requirement tensorflow==1.4.1 (from v
Solution 1:
This post is probably related to Tensorflow installation on Windows.
Tensorflow 1.4.1 was not built for Windows since changes introduced between 1.4.0 and 1.4.1 do not affect the behaviour of Tensorflow on Windows platform. If you want to have a compatible version of tensorflow, version 1.4.0 seems to be a logical choice.
So if running on Windows try instead
pip install tensorflow==1.4.0
This issue has been discussed on Tensorflow issue tracker as #15342.
Post a Comment for "I Am Not Able To Install Tensorflow=1.4.1"