1.镜像源
清华镜像源:https://pypi.tuna.tsinghua.edu.cn/simple/
国内镜像源
2.pyhon—torch
import torch
print(torch.cuda.is_available())
print(torch.cuda.current_device())
print(torch.cuda.get_device_name(torch.cuda.current_device()))
print(torch.version.cuda)
3、硬盘的安装与卸载
手动挂载硬盘mount -t drvfs E: /mnt/e
手动卸载硬盘 umount /mnt/e