pytorch部署到jupyter中

pytorch部署到jupyter中

pytorch部署到jupyter中_第1张图片
在安装Aconda的同时,会将jupyter notebook一起安装,不过这里的jupyter notebook是base中的jupyter notebook二不是pytorch中的jupyter notebook,因此并不能在此jupyter notebook运行torch包。
base中的jupyter:
pytorch部署到jupyter中_第2张图片

两种解决方案

一、base中重新安装pytorch
二、pytorch中安装jupyter notebook
这里选择第二种方法
首先

conda activate pytorch

进入到pytorch环境中去

pytorch部署到jupyter中_第3张图片
在pytorch环境中看包

conda list

pytorch部署到jupyter中_第4张图片
没有我们需要的包,因此输入命令,进行下载jupyter

conda install nb_conda_kernels

进行下载
下载完成后输入命令:

jupyter notebook

打开jupyter notebook
注:我再输入的时候出现了一些无法定位的提示,但是我的电脑没有影响使用jupyter,还是可以使用jupyter并且可以import torch
pytorch部署到jupyter中_第5张图片
点击确定,就可以来到jupyter notebook的页面了

pytorch部署到jupyter中_第6张图片

让我们来验证一下

pytorch部署到jupyter中_第7张图片
成功!!!
pytorch部署到jupyter中_第8张图片

你可能感兴趣的:(机器学习,pytorch,jupyter)