Torch installation issue

I created a virtual environment for my project and I’m trying to install torch via pip.

pip install torch===1.5.1 torchvision===0.6.1 -f https://download.pytorch.org/whl/torch_stable.html

This gives me the error -

ERROR: Could not find a version that satisfies the requirement torch===1.5.1 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch===1.5.1

Some solutions recommend the use of conda, is it necessary? Can I not do it through just pip

I thought it was a virtual env issue maybe but it doesn’t work on the actual environment either

You are using an incorrect version specification. Those triple equal signs need to be double equal signs. In other words, you need to use

pip install torch==1.5.1 torchvision==0.6.1 -f https://download.pytorch.org/whl/torch_stable.html
1 Like
  ERROR: Could not find a version that satisfies the requirement torch==1.5.1 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.5.1

I get this error