Bootstrap

[ASR]faster-whisper报错Could not locate cudnn_ops64_9.dll

问题描述

报错内容

再初次安装之后,首次运行出现以下错误。(参照本文安装命令

Could not locate cudnn_ops64_9.dll. Please make sure it is in your library path!

解决方式

看到其他帖子的方案都是下载dll文件,但是我尝试直接安装cuda版torch时,发现问题已经解决

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124

官方网站

https://pytorch.org/

运行环境

我的运行环境是windows10电脑,cuda版本如下

安装步骤

使用的是faster-whisper与魔搭下载的**keepitsimple/faster-whisper-large-v3**模型文件

https://github.com/systran/faster-whisper
https://www.modelscope.cn/models/keepitsimple/faster-whisper-large-v3/summary

安装命令

conda环境安装

conda create --name faster-whisper python=3.9
conda activate faster-whisper
pip install faster-whisper
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124

创建了一个main.py文件,进行语音识别。

from faster_whisper import WhisperModel

model = WhisperModel("F:\\Ai\\A_Model\\keepitsimple\\faster-whisper-large-v3")

segments, info = model.transcribe("D:\Application\system\Desktop\\test.wav")
for segment in segments:
    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))

其他方法

手动下载cudnn_ops64_9.dll文件,但是恰好他没有**_9**这个版本(我真是裂开)所以我没有尝试是否能解决。

https://github.com/Purfview/whisper-standalone-win/releases/tag/libs

将其dll文件放置于系统文件夹下

C:\Windows\System32
;