You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the default installation bash Install.sh and Only when using the Faster Whisper implementation i get this error message when trying to transcribe with whisper:
venv ./venv/bin/python
Use Faster Whisper implementation
Device "cuda" is detected
Running on local URL: http://0.0.0.0:8860
To create a public link, set `share=True` in `launch()`.
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
start-webui.sh: line 7: 141135 Aborted $PYTHON ./app.py --server_name 0.0.0.0 --server_port 8860
launching the app
DeprecationWarning: 'source deactivate' is deprecated. Use 'conda deactivate'.
One way to avoid this issue was adding in start-webui.sh the flag --disable_faster_whisper runs slower but it doesn't throw an error
The way it was fixed from this comment where by only doing the second step, adding to requirements.txt
nvidia-cublas-cu11
nvidia-cudnn-cu11
And then exporting their path by adding this line inside start-webui.sh before executing app.py
With that I was able to get faster-whisper working but just the nvidia libraries weight 1GB, I'm not sure if someone is able to get it running without those libraries.
At least this might help someone who stumbles on this issue.
The text was updated successfully, but these errors were encountered:
Which OS are you using?
With the default installation
bash Install.sh
and Only when using the Faster Whisper implementation i get this error message when trying to transcribe with whisper:start-webui.sh
the flag--disable_faster_whisper
runs slower but it doesn't throw an errorThe way it was fixed from this comment where by only doing the second step, adding to
requirements.txt
And then exporting their path by adding this line inside
start-webui.sh
before executingapp.py
With that I was able to get faster-whisper working but just the nvidia libraries weight 1GB, I'm not sure if someone is able to get it running without those libraries.
At least this might help someone who stumbles on this issue.
The text was updated successfully, but these errors were encountered: