GPT-SoVITS icon indicating copy to clipboard operation
GPT-SoVITS copied to clipboard

无法使用 faster whisper

Open aixiaodewugege opened this issue 1 year ago • 2 comments

报错:Could not load library libcudnn_ops_infer.so.8. Error: libcudnn_ops_infer.so.8: cannot open shared object file: No such file or directory

aixiaodewugege avatar Mar 07 '24 04:03 aixiaodewugege

image me too, I encounter this issue with my nvidia driver version is 535 image I did research in google, https://github.com/SYSTRAN/faster-whisper/issues/516 It seem demonstrate I need cuda11.8, but i using the official docker image to run the repos, and checked the pytorch has cuda11.8 with it image so now, I have no idea to deal with the issue. Anyone helps?

YANG627 avatar Apr 10 '24 03:04 YANG627

the same to you

barryhunt avatar Apr 18 '24 08:04 barryhunt

+1

dako2 avatar Jul 08 '24 00:07 dako2

export LD_LIBRARY_PATH

XXXXRT666 avatar Jul 08 '24 03:07 XXXXRT666

+1

Oyiyi avatar Jul 10 '24 06:07 Oyiyi

I installed a Cuda with version 11.8 on my Ubuntu and switched to it, this problem has been solved. Another problem is core dump occurs in inferencing, the solution is to run the below code in the terminal before using faster whisper export LD_LIBRARY_PATH=python3 -c 'import os; import nvidia.cublas.lib; import nvidia.cudnn.lib; print(os.path.dirname(nvidia.cublas.lib.__file__) + ":" + os.path.dirname(nvidia.cudnn.lib.__file__))' Hope the messages will be helpful to you.

YANG627 avatar Jul 10 '24 06:07 YANG627