Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get the CUDA and CUDNN version on windows with Anaconda installe

There is a tensorflow-gpu version installed on Windows using Anaconda, how to check the CUDA and CUDNN version of it? Thanks.

like image 583
user297850 Avatar asked Sep 19 '18 16:09

user297850


People also ask

How do I know which version of cuDNN is installed?

Install CuDNN You might need nvcc --version to get your cuda version. Step 2: Check where your cuda installation is. For most people, it will be /usr/local/cuda/ . You can check it with which nvcc .


1 Answers

Use the following command to check CUDA installation by Conda:

conda list cudatoolkit

And the following command to check CUDNN version installed by conda:

conda list cudnn

If you want to install/update CUDA and CUDNN through CONDA, please use the following commands:

conda install -c anaconda cudatoolkit
conda install -c anaconda cudnn

Alternatively you can use following commands to check CUDA installation:

nvidia-smi

OR

nvcc --version
like image 104
SidK Avatar answered Oct 19 '22 02:10

SidK