Pytorch1.3 doesn't support cuda10.0?


here in the picture, I can only see the cuda9.2 and cuda10.1, doesn’t pytorch support cuda 10.0?

You could build PyTorch from source with CUDA10.0, but the binaries were update to CUDA10.1, since we had some bugs with previous versions.

https://anaconda.org/pytorch/pytorch/files

They have a build of 1.3 with CUDA 10.0 but they just don’t have it on their website. You can install it with conda install -c pytorch pytorch=1.3.0 cudatoolkit=10.0

4 Likes

Oh thanks for this information! I didn’t know they were still built and uploaded (and haven’t tried to install them :wink: ).

Is there a way to install the CUDA 10.0 version with pip on Windows?