ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory

前端 未结 12 1378
灰色年华
灰色年华 2020-12-08 10:27

I have installed Cuda 10.1 and cudnn on Ubuntu 18.04 and it seems to be installed properly as type nvcc and nvidia-smi, I get proper response:

user:~$ nvcc -V         


        
12条回答
  •  温柔的废话
    2020-12-08 10:36

    I had the correct version of CUDA and tensorflow-gpu==1.14.0 installed on my conda environment, but somehow I was still getting this error message. This post helped me to finally solve it.

    I had previously installed tensorflow-gpu via pip - after creating a new environment and installing tensorflow-gpu via conda solved my problem.

    conda install -c anaconda tensorflow-gpu=1.14.0
    

提交回复
热议问题