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

前端 未结 12 1369
灰色年华
灰色年华 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 11:00

    I had the same issue. I fixed it by adding the below command to the '.bashrc' file.

    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-10.0/lib64/

    System configuration:

    Ubuntu 16.04 LTS
    Tensorflow GPU 2.0beta1
    Cuda 10.0
    cuDNN 7.6.0 for Cuda 10.0
    

    I used conda to configure my system.

提交回复
热议问题