1. #列出已安装的包
conda list
2.查看CUDA版本
nvcc --version
3.使用conda卸载Pytorch
conda uninstall pytorch
4.使用pip卸载Pytorch
pip uninstall pytorch
5.pytorch安装可到官网https://pytorch.org/自己选择。
6.验证CUDA能否使用
import torch
print(torch.cuda.is_available())
结果为True,则可以使用。