Reputation: 589
My system is windows and I installed anaconda. I am using Spyder. I run a script in Python that imports keras library but when I run I always get this error:
InternalError: cudaGetDevice() failed. Status: CUDA driver version is insufficient for CUDA runtime version
I try to find answers in internet but I do not understand.
Upvotes: 1
Views: 3377
Reputation: 1377
You could check cuda version by openning command prompt and typing:
nvcc --version
You could check Cuda driver version by openning command prompt and typing:
"C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe"
To check if your cuda and cuda driver version is compatible, check this link showing which version is compatible with which.
Checking this and making sure your cuda and driver versions are compatible might solve the problem.
Upvotes: 2