Linux使用Pytorch(五) Centos7安装Pytorch

1.配置镜像源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

2.安装Pytorch

进入官网

Linux使用Pytorch(五) Centos7安装Pytorch_第1张图片
执行command

conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch

如果感觉以上仍然很慢,可以尝试用pip工具安装

pip install torch torchvision  -i https://pypi.tuna.tsinghua.edu.cn/simple

Linux使用Pytorch(五) Centos7安装Pytorch_第2张图片出现下面这个字样表示安装成功
Linux使用Pytorch(五) Centos7安装Pytorch_第3张图片

3.测试

查看Pytorch版本

import torch
print(torch.__version__)

结果如下表示成功
Linux使用Pytorch(五) Centos7安装Pytorch_第4张图片
注:本次使用的是vm虚拟机,所以不能够使用cuda,如果实体机安装cuda后安装pytorch可以使用gpu

你可能感兴趣的:(Pytorch,centos,pytorch)