videogames.ai Blog About Hardware guide

Install Tensorflow on Windows 10

How to Install Tensorflow on Windows 10

Install TF with pip package manager

1. Install python 3.7.5

Download python installer here

Use the following options

Features

Advanced Options

Test your python setup by launching Power Shell or the cmd prompt and type

python

to launch the interpreter

You should get the following result shell

2. Install Tensorflow

In the Power Shell type

pip3 install tensorflow

Test your python setup by launching Power Shell or the cmd prompt and type

python
import tensorflow as tf
tf.__version__

You should get the following result shell

Use TF with docker

TODO