I don't know how to install Pytorch with pip on windows. No commands I do will work. I tried:
pip install torch
pip3 install torch
pip install pytorch
pip3 install pytorch
pip install torch torchvisual torchaudio
pip3 install torch torchvisual torchaudio
pip3 install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio===0.10.1+cu102 -f https://download.pytorch.org/whl/cu102/torch_stable.html
and I used the website to try and install it but they all have this error:
ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch
You probably tried this on Python 3.10, there isn't a build for PyTorch on PyPI for 3.10 yet. Just install Python 3.9 for the time being and you'll be fine with pip install torch.
(note, this was posted on 2021-12-25; hello people from the future, it seems likely that this won't last too long, so your problem may be a different one)