torch python download code example
Example 1: pip install pytorch windows
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
Example 2: pytorch
from __future__ import print_function
import torch
x = torch.rand(5, 3)
print(x)