Nightly build for torchvision

I am installing the nightly build for pytorch using conda install pytorch-nightly -c pytorch. However, if I try to install torchvision after this via conda install torchvision -c pytorch it tries to install pytorch 0.4.1.post2. How to have torchvision use the nightly build instead?

2 Likes

First install torchvision, then uninstall torch 0.4 that comes with it and then finally install torch-nightly. That’s what I did to get it working.

4 Likes