Install Previous Nightly build with Pip

I would like to install a previous nightly build for PyTorch using PIP, especifically, this version: 1.0.0.dev20190328. Which is the one that gets installed when running: conda install -c pytorch pytorch-nightly.

I tried using: pip3 install torch_nightly -f https://download.pytorch.org/whl/nightly/cu100/torch_nightly.html but this, of course, install the latest nightly build (torch_nightly-1.2.0.dev20190805). How can I accomplish this without using conda.

Have you found any solution to this?

You could check the files from here and check, if the desired nightly can be found. Alternatively you could probably also specify the version directly (haven’t checked it using pip as I’m usually using conda).