0

I am trying to install Tensorflow but it gives the following error. I have python 3.5.4 on my system and using windows 10 as my operating system enter image description here

Ashish
  • 114
  • 1
  • 14

2 Answers2

0

What python do you have and is Python in your path?

try

pip3 install --upgrade tensorflow

or also

python -m pip3 install --upgrade tensorflow

Worked for me on a PC with Python 3.

Zoe
  • 1,402
  • 1
  • 12
  • 21
  • i have python 3.5.4 on my system and yes python has its path set. I have tried above commands but same issue follows up. – Ashish Oct 03 '17 at 16:11
0

Actually Python 3.5.4 is based on 32 bit architecture. But Tensorflow needs a 64 bit based architecture. So replacing the version 3.5.4 with 3.5.3 will work as the version 3.5.3 is a 64-bit based architecture. And the Tensorflow will install with the normal command in pip.

Ashish
  • 114
  • 1
  • 14