I tried to download torch by using pip install torch
I faced this problem:
C:\Users\Ahmad Sadek>pip install torch
ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch
pip install -vvv torch
and see what it says. – Pelvis-vvv
made it clear that none of the build versions match my current architecture (mine isarm64
, which I found it by running$ arch
), so it was not a python incompatibility (in case anyone is also spending a lot of time going through this rabbit hole) thanks @Pelvis – Bookrack