Home > Blockchain >  Can't install torch (windows)
Can't install torch (windows)

Time:01-01

I am trying to install torch using pypy. when I run pypy -m pip install torch, I get this error:

ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch

Why is this happening, and how can I successfully install torch?

I want to install torch (above 1.6.0), I can't

CodePudding user response:

try pip3 install torch pip install pytorch

CodePudding user response:

Do you have python version 3.11?. If yes, try using a lower version. It doesn't work with Python 3.11. When I had anaconda installed with Python 3.9, it worked fine, but when I updated python version to 3.11, I was unable to install it and was getting the same error.

  • Related