1、设置下载源:为了下载快捷,先把默认下载源换成清华镜像:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch
2、安装pytorch:由于电脑上没有
gpu,所以安装cpu版本的:
conda install pytorch-cpu
在Anaconda Prompt上面进行测试:Python -->import torch
torch安装成功!
3、安装torchvision:
pip install torchvision
测试:import torchvision
安装成功!
4、安装tensorboardX:
pip install torchvision
测试: import tensorboardX
安装成功
4、Pytorch可以使用啦!
5、为了方便以后安装不同版本或者GPU版本的pytorch参考,附上两个较为全面的参考链接:
Windows系统安装和使用PyTorch 0.4.0 (官方已经支持 Windows )
tensorflow环境安装: