win10+anaconda+spyder+pytorch安装

win10+anaconda+spyder+pytorch安装
anaconda+spyder+cuda 安装参考 https://www.cnblogs.com/gaofighting/p/9917456.html
最终环境:
Anaconda3(64bit)
CUDA-9.2
CuDNN-7.1
Python-3.7

更新所有包 conda update --all

PyTorch的安装
到官网 https://pytorch.org/ 复制所需版本的代码,输进prompt 对应代码conda install pytorch torchvision cudatoolkit=9.0 -c pytorch
win10+anaconda+spyder+pytorch安装_第1张图片
安装完之后,import torch 报错 import不是内部或外部命令
在这里插入图片描述
原因: python环境没激活
解决:python 然后 import torch
在这里插入图片描述

你可能感兴趣的:(深度学习,pytorch)