PyTorch 安装 安装 PyTorch: conda install pytorch torchvision cudatoolkit=10.2 -c pytorch检测 PyTorch版本 import torch print(torch.__version__) 检测GPU是否可用 输入命令 import torch torch.cuda.is_available() 返回True 参考 PyTorch documentation