Building pytorch and making it appear in pip?

I built pytorch 1.2.0 from source and it works but it doesn’t register with pip so when I try to install torchvision with pip, torchvision tries to download it’s own pytorch?

How can I get it registered with pip?

I have checked and calling python and pip from the commandline both trigger the one in my conda environment

Try to install torchvision via pip install --no-deps.
Alternatively, you could of course build torchvision from source.

1 Like