I think that I’ve already done that, but right now I’m pretty much just copying and pasting commands from threads like this in an seeing if they solve it.
Are you able to give me a quick 1,2,3 on how to actually do that, so that I know I’m doing it the right way.
I take it that this should be done via the Windows DOS\Command prompt?
No you did not uninstall all PyTorch binaries as the install command claims PyTorch is already installed.
Uninstall all previously installed PyTorch binaries (and make sure no installs are detected e.g. via pip list | grep torch) and install the latest binary with CUDA 12.8 by pasting the install command to your terminal.
I don’t know which setup and virtual environment you are using so make sure you are using any terminal which supports and detects Python and which you use to execute scripts.
To get started with Python itself these resources might be helpful as they explain the first steps for non-programmers. The PyTorch docs expect users to have some basic experience in Python. Let me know if this helps.
Share my experience on installing PyTorch for RTX5080 GPU on Windows OS here:
I installed below version of torch, torchvision and torchaudio in the environment of cuda 12.8, python 3.9:
First download below wheels:
torch-2.8.0.dev20250530+cu128-cp39-cp39-win_amd64.whl
torchvision-0.23.0.dev20250531+cu128-cp39-cp39-win_amd64.whl
torchaudio-2.8.0.dev20250531+cu128-cp39-cp39-win_amd64.whl
Then run pip install --force-reinstall torch-2.8.0.dev20250530+cu128-cp39-cp39-win_amd64.whl torchvision-0.23.0.dev20250531+cu128-cp39-cp39-win_amd64.whl torchaudio-2.8.0.dev20250531+cu128-cp39-cp39-win_amd64.whl
Note that I am using Windows, you can find more versions of torch here: https://download.pytorch.org/whl/cu128/torch, as well for torchvision and torchaudio, be aware the dependency conflict and choose the right verison