1. 查看显卡版本
nvidia-smi -a | grep NVIDIA
2. 查看Ubuntu版本
cat /proc/version
uname -a
3. 查看CUDA版本
nvcc -V
4. 查看gcc版本
gcc -v
5. 查看conda版本
conda -V
6. 查看torch版本
print(torch.__version__) # torch版本
torch.version.cuda # torch对应的cuda版本,需要和nvcc -V的版本对应
print(torch.cuda.is_available()) # 查看GPU是否可用
标签:gcc,查看,torch,version,conda,版本,Ubuntu
From: https://blog.csdn.net/pianchengxiaobai/article/details/136665257