Install TensorFlow on Windows – A Simple Guide to TensorFlow Installation

By | June 20, 2019

Before you start to install TensorFlow on Windows, the following are the necessary requirements:

  • TensorFlow only supports 64-bit Python 3.5.x or Python 3.6.x on Windows
  • When you download the Python 3.5.x version, it comes with the pip3 package manager

How to install TensorFlow on Windows?

Step 1: Download Python 3.5.x from python.org

Step 2: Select the 3.5.2 download

python download

Step 3: Select either the x86-64 or amd64 installer

Step 4: Install Python and choose to Add Python 3.5 to PATH

Step 5: Check Python version

check python version

Step 6: Start a terminal and run the cmd as an administrator

run cmd as administrator

Step 7: Enter this command to install tensorflow

C:\> pip3 install –upgrade tensorflow

Step 8: Test TensorFlow

test tensorflow installation

If there are some errors, it means to fail to install tensorflow, you may check steps above to fix errors.

Leave a Reply