Hi there,
I need to use a nightly build of pytorch because the stable release has a compilation bug.
Now I have tested everything with the latest nightly build, but I’m afraid that something will break with a later one and I won’t notice. Is there any way to pin my software to a specific nightly build? I noticed that only the latest nightly is available in the conda channel.
Best,
Thorsten
I’m unsure how the conda
nightly channel is used currently, but you can manually download the corresponding nightly pip wheels and install it locally.
Something like this should work pip3 install torch==2.1.0.dev20230814+cu118 --index-url https://download.pytorch.org/whl/nightly/cu118
So feel free to put in the version, date and cuda version you need, you can check and see if you can conda install the wheels directly from the index file I provided