Tensorflow is now available on Windows:
https://developers.googleblog.com/2016/11/tensorflow-0-12-adds-support-for-windows.html
I used pip
From the path of your Python interpreter (C:\Python\Python35-32
), it appears that you are using the 32-bit version of Python 3.5. The official TensorFlow packages are only available for 64-bit architectures (x64
/amd64
), so you have two options:
Install the 64-bit version of Python 3.5 (either from Python.org or Anaconda), or
Compile the PIP package yourself for 32-bit Python 3.5. You may be able to do this using the experimental CMake build (see here for details), but this is not a supported or tested configuration.
(Note that I'm not sure how you installed the package on a 32-bit version of Python, because when I tried to do that I got an error message: "Not a supported wheel on this platform.")
IF you are installing the GPU version please make sure you have following on your system:
you can find cudnn64_5.dll file inside "cuda\bin"[this is cudnn-8.0-windows7-x64-v5.1_4 zip extraction folder].Then copy above file into "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin". This is work for Python 3.5 bit 64 version and Windows 7 bit 64 environment
The problem is not with platform (amd64) but with GPU drivers. You need to either install packages which runs on CPU or use that GPU ones you already installed but install also CUDA drivers.