I found all information about python3 but cannot find anything about python2.
> pip install --upgrade tensorflow-gpu
Collecting tensorflow-gpu
Could not find a version that satisfies the requirement tensorflow-gpu (from versions: )
No matching distribution found for tensorflow-gpu
I followed https://www.tensorflow.org/install/install_windows#CommonInstallationProblems and http://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/ to install CUDA and I get:
> nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:08:12_Central_Daylight_Time_2017
Cuda compilation tools, release 9.1, V9.1.85
So I think I am good on this side.
I just need the pip
command to install tensorflow-gpu
.
I found a link to a version of tensorflow-gpu
which should work, copied the link and tried but I get that:
> pip install --upgrade https://pypi.python.org/packages/23/ad/63ae65999fd42a3e8d0044245e52513b31764167797651bef3ceb5202001/tensorflow_gpu-1.7.0-cp36-cp36m-win_amd64.whl#md5=7d780aa2c9f73c1ea9d3b87422aca096
tensorflow_gpu-1.7.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
EDIT:
So I uninstall python2 and reinstall python3 but it still does not work:
> pip --version
pip 9.0.3 from c:\program files (x86)\python36-32\lib\site-packages (python 3.6)
> pip install --upgrade tensorflow-gpu
Collecting tensorflow-gpu
Could not find a version that satisfies the requirement tensorflow-gpu (from versions: )
No matching distribution found for tensorflow-gpu
EDIT:
I wrote an article about it: https://leobenkel.com/2018/04/tensorflow-gpu-windows10-tutorial/