python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > pytorch部署jupyter

pytorch部署到jupyter中的问题及解决方案

作者:henu-于笨笨

这篇文章主要介绍了pytorch部署到jupyter中,在这里需要注意我再输入的时候出现了一些无法定位的提示,但是我的电脑没有影响使用jupyter,还是可以使用jupyter并且可以import torch,本文给大家讲解的非常详细,需要的朋友参考下吧

pytorch部署到jupyter中

在这里插入图片描述

在安装Aconda的同时,会将jupyter notebook一起安装,不过这里的jupyter notebook是base中的jupyter notebook二不是pytorch中的jupyter notebook,因此并不能在此jupyter notebook运行torch包。
base中的jupyter:

在这里插入图片描述

两种解决方案

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

conda activate pytorch

进入到pytorch环境中去

在这里插入图片描述

在pytorch环境中看包

conda list

在这里插入图片描述

没有我们需要的包,因此输入命令,进行下载jupyter

conda install nb_conda_kernels

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

jupyter notebook

打开jupyter notebook
注:我再输入的时候出现了一些无法定位的提示,但是我的电脑没有影响使用jupyter,还是可以使用jupyter并且可以import torch

在这里插入图片描述

点击确定,就可以来到jupyter notebook的页面了

在这里插入图片描述

让我们来验证一下

在这里插入图片描述

到此这篇关于pytorch部署到jupyter中的文章就介绍到这了,更多相关pytorch部署jupyter内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文