1. 程式人生 > >檢視Ubuntu/cuda/Tensorflow/Pytorch版本

檢視Ubuntu/cuda/Tensorflow/Pytorch版本

 

檢視Cuda版本:

cat /usr/local/cuda/version.txt

CUDA Version 9.0.176

 

檢視Linux/Ubuntu版本:

(1)

cat /proc/version

輸出:

Linux version 4.4.0-137-generic ([email protected]) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) ) #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018

  

(2)

uname -a 

輸出:

Linux gpu4 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

 

(3)

lsb_release -a

輸出:

No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 16.04.4 LTS
Release:	16.04
Codename:	xenial

 檢視tensorflow版本:

$python

>>>import tensorflow as tf

>>>tf.__version__

#查詢tensorflow安裝路徑為:

>>>tf.__path__

 檢視pytorch版本:

$python

>>>import torch

>>>print(torch.__version__)