2

When i try the command:

pip install torchaudio

i get this error:

 ERROR: Could not find a version that satisfies the requirement torchaudio
 ERROR: No matching distribution found for torchaudio

I use windows 10

Cerabbite
  • 151
  • 1
  • 2
  • 8

2 Answers2

3

You could try doing this:

 pip install torchaudio -f https://download.pytorch.org/whl/torch_stable.html

Found on the github.

https://github.com/pytorch/audio

Shyrtle
  • 647
  • 5
  • 20
0

The selected answer did not work for me in the colab environment. However, pip install torchaudio==0.4.0 installed the module.

Ali H. Kudeir
  • 756
  • 2
  • 9
  • 19