instsall pytorch code example
Example 1: get pytorch version
import torch
print(torch.__version__)
Example 2: pytorch conda environment
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch
import torch
print(torch.__version__)
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch