pytorch_cpu版安装

CPU版Pytorch安装

1. 下载pytorch

提前装好Anaconda,去Pytorch官网,在给出网址https://download.pytorch.org/whl/torch_stable.html
离线下载自己想要的pytorch版本,作者下载的是pytorch1.2.0和torchvision0.4.0,torch-1.2.0+cpu-cp37-cp37m-win_amd64.whltorchvision-0.4.0+cpu-cp37-cp37m-win_amd64.whl
下载速度慢的话复制链接到迅雷下载
pytorch_cpu版安装_第1张图片

2. pip换源

C:\Users\huash\AppData\Roaming路径下创建pip文件夹
pytorch_cpu版安装_第2张图片
在文件夹内创建pip.ini文件,内容如下:(作者换的是清华源)

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

3. 安装pytorch

  1. 安装Anaconda,命令行中创建虚拟环境并激活
conda create -n pytorch37 python=3.7
activate pytorch37
  1. 去pytorch文件下载目录,安装
cd C:\Users\huash\Desktop # 作者下载到了桌面
pip install torch-1.2.0+cpu-cp37-cp37m-win_amd64.whl # 记得提前换源,否则此处下载包比较慢
pip install torchvision-0.4.0+cpu-cp37-cp37m-win_amd64.whl

4. 验证安装成功

pytorch_cpu版安装_第3张图片

你可能感兴趣的:(pytorch_cpu版安装)