How to install Tensorflow on Python 2.7 on Windows?

Viewed 89585

I try to install TensorFlow via pip (pip install tensorflow) but get this error

could not find a version that satisfies the requirement tensorflow (from versions: )

Is there a solution to this problem? I still wish to install it via pip

5 Answers

There is a great Github repo which has *.whl file to install. support py27 and py36

  1. go to fo40225's Github Repo tensorflow-windows-wheel
  2. find a tensorflow whl version and download
  3. pip install xxx.whl (xxx is your download whl file name)

I found that Tensorflow can work on CPU under intergrated Ubuntu to Windows with any version of python.

  1. You may install Ubuntu directly from Windows Store (https://www.microsoft.com/ru-ru/p/ubuntu/9nblggh4msv6)
  2. pip: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py
  3. sudo pip install tensorflow
Related