[ Pytorch ] ——安装:使用Anaconda安装Pytorch

 

 

1、添加conda清华源,然后使用conda进行安装。(注:0.3.1 及以后)

### for 0.4.0 and later
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
(注: 添加的镜像源可以在 ~/home/你的系统名称/.condarc 文件中查看)

# for CPU only packages
cmd1:  conda install pytorch-cpu torchvision-cpu

或1、添加pip源,然后pip安装

1)、进入C盘的 User(用户)文件夹——>用户名——>AppData——>Roaming

2)、创建pip文件夹——>在该文件夹下创建pip.ini文件。pip.ini文件内容如下。

[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

pip安装:

pip install torch==1.2.0+cpu torchvision==0.4.0+cpu -f https://download.pytorch.org/whl/torch_stable.html

 

2、GPU版本

(你的环境)>> pip install torch torchvision

 

 

[参考文献]

    - https://zhuanlan.zhihu.com/p/26871672

你可能感兴趣的:([ Pytorch ] ——安装:使用Anaconda安装Pytorch)