SomeoneElse

Results 2 comments of SomeoneElse

> I'd suggest using the same `--index-url` when installing `pyannote.audio`. > > ```shell > pip install pyannote.audio --index-url https://download.pytorch.org/whl/cu118 > ``` Expectedly doesn't work. ![image](https://github.com/pyannote/pyannote-audio/assets/49030147/34ba5f79-d8e4-4258-b064-c19d49c30600)

But if use this ``` pip install pyannote.audio --extra-index-url https://download.pytorch.org/whl/cu118 ``` then torch and torchaudio packages with cuda support will be installed ![image](https://github.com/pyannote/pyannote-audio/assets/49030147/1fc17c09-81c5-495f-a128-5e67328720b2) It would be cool if this was...