I want to install Tensorflow 1.o for python on windows.
This is information for my system.
D:\\>python --version
Python 3.5.2 ::
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
conda search pythonconda create -n py35 python=3.5 anaconda to create python 3.5activate py35conda install tensorflowIf step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.