We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: For proper functionality, WhisperX requires torch version 2.0.0. However, after running:
pip install whisperx
the installed torch version is 2.6.0—even if torch 2.0.0 was previously installed using:
conda install pytorch==2.0.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
The issue appears to be due to the following dependency chain:
This chain forces the installation of a torch version higher than 2.0.0.
Steps to Reproduce:
Install torch 2.0.0 with: conda install pytorch==2.0.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
Run: pip install whisperx
Verify that torch is upgraded (e.g., using pip show torch), confirming that version 2.6.0 is installed.
System Information:
lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.3 LTS Release: 22.04 Codename: jammy
Expected Behavior: WhisperX should work with torch 2.0.0 as intended without forcing an upgrade.
Actual Behavior: Torch is upgraded to 2.6.0 due to the dependency requirements of lightning/pytorch-lightning.
Even in case of downgrading the pyannote.audio to version 3.1.1 and 3.0.0 it still uses lightning which requires torch>=2.1.0
3.0.0.txt 3.1.1.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
For proper functionality, WhisperX requires torch version 2.0.0. However, after running:
pip install whisperx
the installed torch version is 2.6.0—even if torch 2.0.0 was previously installed using:
conda install pytorch==2.0.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
The issue appears to be due to the following dependency chain:
This chain forces the installation of a torch version higher than 2.0.0.
Steps to Reproduce:
Install torch 2.0.0 with:
conda install pytorch==2.0.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
Run:
pip install whisperx
Verify that torch is upgraded (e.g., using pip show torch), confirming that version 2.6.0 is installed.
System Information:
Expected Behavior:
WhisperX should work with torch 2.0.0 as intended without forcing an upgrade.
Actual Behavior:
Torch is upgraded to 2.6.0 due to the dependency requirements of lightning/pytorch-lightning.
Even in case of downgrading the pyannote.audio to version 3.1.1 and 3.0.0 it still uses lightning which requires torch>=2.1.0
3.0.0.txt
3.1.1.txt
The text was updated successfully, but these errors were encountered: