I was tring to install older version of tensorflow gpu on windows 10:
pip install tensorflow-gpu==1.4.0
And I get an error like this other post impling there is no windows version
And I'm wondering if there is a way to get the list of functionning windows tensorflow version
Thanks in advance
Edits
It seems that tensorflow GPU v1.4.0 doesn't work on python 3.7 therefore creating another enviromment and downgrading your python version to 3.6 may resolve the issue.
by using anaconda you can do it this way
conda create -n py36 python=3.6
conda activate py36
pip install tensorflow-gpu==1.4.0
note that another older version of CUDA is required for older version of tensorflow (I had to install CUDA 8.0)