-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
Linux install issues #242
Comments
In this comment from #237 a user describes using conda (better dependency resolution than pip) and a modification of requirements.txt to address this. That said, using a clean python 3.10 conda env, I was able to install v3 on Linux without any additional/manual changes. |
I saw that comment and I have already tried using that method but it doesen't work for me. I clone the repo with: And at the moment I am forced to use pip instead of conda. But I can't understand why the instructions says to manually install torch if the requirements.txt has torch too. |
did you tried another version of torch? i got this error during last install, may be ur problems cas of this too: ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. |
Sorry yes only torch 2.0.0 is working right now Any of the following: |
I am getting the same error now when trying to run v.3.1.1 (on Windows).
UPD: https://github.com/m-bain/whisperX/issues/237#issuecomment-1541564485 helped, though I also had to install chardet. |
This code works for me
|
Any updated solution on this? I am experiencing the exact same issue. I have the cpu only version of torch installed, not sure if that's the cause. |
If you have installed Pytorch lightning version v2.0.0 or above, update your import statement
|
I tried to follow the instruction for use the whisperX in my python code but I have compatibility issues during the dependency installation.
I'm creating a python env with:
python3.10 -m venv venv
Upgrading pip with:
pip install --upgrade pip
Installing torch with:
pip3 install torch torchvision torchaudio
that install the packages:
Them I install whisperX with:
pip install git+https://github.com/m-bain/whisperx.git
that gave me this error:
And if I try to use whisperX I have this error:
ModuleNotFoundError: No module named 'lightning_fabric'
Maybe there is some issue whith the requirements?
The text was updated successfully, but these errors were encountered: