How to Install Tensorflow on Windows

How to install TensorFlow on Windows?

How to install TensorFlow and to use it under Windows?

Updated on 8/4/16

Windows 10 now has a Ubuntu Bash environment, AKA Bash on Ubuntu on Windows, available as a standard option (as opposed to Insider Preview updates for developers). (StackOverflow tag wsl) This option came with the Windows 10 anniversary update (Version 1607) released on 8/2/2016. This allows the use of apt-get to install software packages such as Python and TensorFlow.

Note: Bash on Ubuntu on Windows does not have access to the GPU, so all of the GPU options for installing TensorFlow will not work.

The dated installation instructions for Bash on Ubuntu on Windows are basically correct, but only these steps are necessary:

Prerequisites

Enable the Windows Subsystem for Linux feature (GUI)

Reboot when prompted

Run Bash on Windows

Steps no longer needed:

Turn on Developer Mode

Enable the Windows Subsystem for Linux feature (command-line)

Then install TensorFlow using apt-get

sudo apt-get install python3-pip python3-dev
sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl

and now test TensorFlow

$ python3
...
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
>>> exit()

and run an actual neural network

python3 -m tensorflow.models.image.mnist.convolutional

Earlier Answer

After learning about the developer preview of Bash on Windows.

See Playing with TensorFlow on Windows by Scott Hanselman which uses Bash on Windows 10

Original Answer

Bazel is the problem

TensorFlow is not made with build automation tools such as make, but with Google's in-house build tool Bazel. Bazel only works on systems based on Unix such as Linux and OS X.

Since the current published/known means to build TensorFlow uses Bazel and Bazel does not work on Windows, one can not install or run TensorFlow natively on Windows.

From Bazel FAQ

What about Windows?

Due to its UNIX heritage, porting Bazel to Windows is significant
work. For example, Bazel uses symlinks extensively, which has varying
levels of support across Windows versions.

We are currently actively working on improving Windows support, but
it's still ways from being usable.

Status

See: TensorFlow issue #17

See: Bazel issue #276

Solutions

The solutions are listed in the order of complexity and work needed; from about an hour to may not even work.

  1. Docker
    ~ 1 hour

Docker installation

Docker is a system to build self contained versions of a Linux operating system running on your machine. When you install and run TensorFlow via Docker it completely isolates the installation from pre-existing packages on your machine.

Also look at TensorFlow - which Docker image to use?


  1. OS X
    ~ 1 hour

If you have a current Mac running OS X then see: Installation for Mac OS X


  1. Linux

The recommend Linux system tends to be Ubuntu 14.04 LTS (Download page).

a. Virtual Machine - Hardware Virtualization - Full Virtualization

~ 3 hours

Download and install a virtual machine such as the commercial VMware or the free Virtual Box, after which you can install Linux and then install TensorFlow.

When you go to install TensorFlow you will be using Pip - Python's package management system. Visual Studio users should think NuGet. The packages are known as wheels.

See: Pip Installation

If you need to build from the source then see: Installing From Sources

~ 4 hours

Note: If you plan on using a Virtual Machine and have never done so before, consider using the Docker option instead, since Docker is the Virtual Machine, OS and TensorFlow all packaged together.

b. Dual boot

~ 3 hours

If you want to run TensorFlow on the same machine that you have Windows and make use of the GPU version then you will most likely have to use this option as running on a hosted Virtual Machine, Type 2 hypervisor, will not allow you access to the GPU.


  1. Remote machine
    ~ 4 hours

If you have remote access to another machine that you can install the Linux OS and TensorFlow software on and allow remote connections to, then you can use your Windows machine to present the remote machine as an application running on Windows.


  1. Cloud Service
    I have no experience with this. Please edit answer if you know.

Cloud services such as AWS are being used.

From TensorFlow Features

Want to run the model as a service in the cloud?
Containerize with Docker and TensorFlow just works.

From Docker

Running Docker on AWS provides a highly reliable, low-cost way to
quickly build, ship, and run distributed applications at scale. Deploy
Docker using AMIs from the AWS Marketplace.


  1. Wait for Bazel to work on Windows.

Currently it appears the only hold up is Bazel, however Bazel's roadmap list working on Windows should be available this year.

There are two features listed for Windows:

2016‑02  Bazel can bootstrap itself on Windows without requiring admin privileges.  

2016‑12 Full Windows support for Android: Android feature set is identical for Windows and Linux/OS X.

  1. Build TensorFlow by hand.

    A few days or more depending on you skill level. I gave up on this one; too many subprojects to build and files to locate.

Remember that Bazel is only used to build TensorFlow. If you get the commands Bazel runs and the correct source code and libraries you should be able to build TensorFlow on Windows. See: How do I get the commands executed by Bazel.

While I have not researched this more, you can look at the continuous integration info for needed files and info on how to they build it for testing. (Readme) (site)


  1. Build Bazel on Windows

    A few days or more depending on you skill level. I gave up on this one also; could not find the necessary source files needed for Windows.

There is a public experimental source code version of Bazel that boots on Windows. You may be able to leverage this into getting Bazel to work on Windows, etc.

Also these solutions require the use of Cygwin or MinGW which adds another layer of complexity.


  1. Use alternative build system such as Make

    If you get this one to work I would like to see in on GitHub.

This currently does not exist for TensorFlow. It is a feature request.

See: TensorFlow issue 380


  1. Cross Build

    If you get this one to work I would like to see in on GitHub.

You build TensorFlow on Linux using Bazel but change the build process to output a wheel that can be installed on Windows. This will require detailed knowledge of Bazel to change the configuration, and locating the source code and libraries that work with Windows. An option I would only suggest as a last resort. It may not even be possible.


  1. Run on the new Windows Subsystem for Linux.

See: Windows Subsystem for Linux Overview

You will know as much as I do by reading the referenced article.

Can I use Bazel for Windows for production use?

Since it is experimental software I would not use on a production machine.

Remember that you only need Bazel to build TensorFlow. So use the experimental code on a non production machine to build the wheel, then install the wheel on a production machine. See: Pip Installation

TLDR;

Currently I have several versions for learning. Most use a VMWare 7.1 Workstation to host Ubuntu 14.04 LTS or Ubuntu 15 or Debian. I also have one dual boot of Ubuntu 14.04 LTS on my Windows machine to access the GPU as the machine with VMware does not have the proper GPU. I would recommend that you give these machines at least 8G of memory either as RAM or RAM and swap space as I have run out of memory a few times.

Installing tensorflow on windows

Try the following at a Python command prompt:

import platform
platform.architecture()[0]

It should display '64bit'
Just having an x86 version of Python isn't enough.
I had the same problem. Thought I had a 64 bit installation but it turned out to be 32 bit.

BTW. it will also work fine with the Conda Python 3.6 distribution. And indeed use the distro from the Gohlke page as indicated by Guillaume Jacquenot.

Taking forever and stuck tensorflow installation: Anaconda navigator

'solving packet specifications' means its installing tensorflow package using Anaconda which may take a little time.

We need to create virtual environment to install the TensorFlow and to use as it has specific set of libraries to be installed in that environment which supports installed TensorFlow version.

Follow below code to install TensorFlow in virtual environment:

conda create -n tf tensorflow  #Create a Virtual environment(tf).
conda activate tf #Activate the Virtualenv environment
pip install tensorflow #install TensorFlow in it.

Note: You need to activate the Virtual environment each time you want to use TensorFlow.

Yes, you need to install other required package further based on your program need.

For that you can select the virtual environment and select particular non-installed package to install

Or you can use !pip install <package-name> in jupyter notebook.

Problems installing tensorflow on Windows 10

Tensorflow supports only Python 3.5-3.8 versions. That might cause a problem.
You can read more at a similar post about that error; Could not find a version that satisfies the requirement tensorflow

I suggest you to use virtual environments created with Conda.
https://docs.anaconda.com/anaconda/install/windows/

If you use Conda, you can specify required Python version, pip libraries to that env and use it from anywhere in your OS.

install tensorflow-decision-forests in windows

tensorflow-decision-forests 0.2.6 provides binary wheels only for Linux and no source code. So pip cannot install it on non-Linux platforms.

There're instructions on how to compile it on Linux and Mac OS X but that's all. Perhaps it's not possible to compile it anywhere else.



Related Topics



Leave a reply



Submit