Hi!
At work we noticed that the wheel package for PyTorch 1.11.0 with CUDA 10.2 is gone. Until yesterday we were using https://download.pytorch.org/whl/cu102/torch-1.11.0%2Bcu102-cp39-cp39-linux_x86_64.whl to directly install the package but from today it is not available any more.
Another option was to use
pip install torch==1.11.0+cu102 torchvision==0.12.0+cu102 torchaudio==0.11.0 --extra-index-url https://download.pytorch.org/whl/cu102
but https://download.pytorch.org/whl/cu102 is gone too.
We use pip to manage the requirements and for various reasons using conda is not an option.
This is causing us a lot of trouble so we would appreciate some information how to manage this without compiling PyTorch from source.
Thank you!