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'
本文来源:https://www.yuntue.com/post/67391.html | 云服务器网,转载请注明出处!