how does one fix when torch can’t find cuda, error: version libcublasLt.so.11 not defined in file libcublasLt.so.11 with link time reference?

Like eval said, it is because pytorch1.13 automatically install nvidia_cublas_cu11, nvidia_cuda_nvrtc_cu11, nvidia_cuda_runtime_cu11 and nvidia_cudnn_cu11. While I have my own CUDA toolKit already installed, I have the same problem.

In my case, I used pip uninstall nvidia_cublas_cu11 and solved the problem.
I think the PyTorch team should solve this issue, since users often have their own CUDAtoolkit installed.

Leave a Comment