PyTorch GPU install with 11.2 CUDA
11:13 17 Dec 2021

How to install PyTorch if my CUDA version is 11.2 and CudNN version is 8.1.0?

Offical documentation at https://pytorch.org/get-started/locally/ suggests only CUDA 10.2 and 11.3 versions.

Should I try to install it with v10.2 with next command?

conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch

Won`t it have any incompatible version problems in the future?

pytorch