how long are nightly whls available? i noticed that the whl version 2.1.0.dev20230602+cpu
was taken down today:
CC @malfet who might know the life time of the nightly binaries.
There aren’t really taken down, just removed from the index after 60 days, see https://github.com/pytorch/builder/blob/2a03668317eae474844f3ae1f31578facf7a1688/s3_management/manage.py#L102-L103
But one can still download the wheel, i.e.
curl -OL https://download.pytorch.org/whl/nightly/cpu/torch-2.1.0.dev20230602%2Bcpu-cp310-cp310-linux_x86_64.whl
will get you 2.1.0.dev20230602 wheel for Python-3.10
unfortunately your solution is not working for me. I installed the nightly version as follows:
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124
However my dependencies require:
PyTorch 2.5.0.dev20240705+cu124 with CUDA 1204 (you have 2.6.0.dev20241008+cu124)
Now I tried to install the 2.5.0 dev version like this:
pip install https://download.pytorch.org/whl/nightly/cu124/torch-2.5.0.dev20240705%2Bcu124-cp310-cp310-linux_x86_64.whl
I get this error:
ERROR: Could not find a version that satisfies the requirement pytorch-triton==3.0.0+dedb7bdf33; platform_system == “Linux” and platform_machine == “x86_64” and python_version < “3.13” (from torch) (from versions: 0.0.1)
25.24 ERROR: No matching distribution found for pytorch-triton==3.0.0+dedb7bdf33; platform_system == “Linux” and platform_machine == “x86_64” and python_version < “3.13”