0

When trying to install PyTorch, I can't progress past these errors:

ERROR: Could not find a version that satisfies the requirement torch==1.7.0+cpu (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.7.0+cpu
Daemon Painter
  • 3,208
  • 3
  • 29
  • 44
Ebinesh. A
  • 43
  • 6
  • 1
    Does this answer your question? [Could not find a version that satisfies the requirement torch>=1.0.0?](https://stackoverflow.com/questions/56239310/could-not-find-a-version-that-satisfies-the-requirement-torch-1-0-0) – Muteshi Dec 01 '20 at 15:16
  • 1
    https://stackoverflow.com/search?q=%5Bpip%5D+%22No+matching+distribution+found+for+torch%3D%3D1.7.0%2Bcpu%22 – phd Dec 01 '20 at 19:03

1 Answers1

3

The issue likely has to do with your Python version. PyTorch will not work with the 32-bit version of Python, so if you're using 32-bit it will give that error. I had this happen to me before, switching to 64-bit should fix the error.