ubuntu中查看pytorch版本的方法:1、打開ubuntu終端;2、輸入“python”命令python交互式環境;3、通過“import torch”和“torch.__version__”命令查看pytorch版本即可。
具體操作步驟:
1、在ubuntu系統桌面中使用快捷鍵【Ctrl+Alt+T】打開ubuntu終端命令行模式。
2、在ubuntu終端命令行中輸入以下命令進入python交互式環境。
python #進入python交互式環境
3、最后輸入以下命令查看pytorch版本即可。
import torch
torch.__version__
相關示例:
user@home:~$ python
Python 3.6.3 |Anaconda custom (64-bit)| (default, Oct 13 2017, 12:02:49)
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
>>> torch.__version__
'1.0.1.post2'