I have installed tensorflow-gpu
in Ubuntu 18.04
with CUDA 9.0
and CuDnn 7.4
. Although it got successfully installed but when I import it
>>> import tensorflow as tf
I get error msg
ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory
Detailed error log
Earlier I have installed and used it without any problem but as soon as I have reinstalled Ubuntu I'm getting this error.
From error is seems tensorflow is looking for CUDA 10.0
, Do I need to install a lower version of tensorfow-gpu
current version is tensorflow-gpu==1.13.1
.