linux下jupyter notebook的使用:

jupyter notebook是一个交互式笔记本,支持运行 40 多种编程语言。使用jupyter notebook可以很方便的调试代码,下面介绍如何使用jupyter notebook(我是用anaconda配置环境):

第一步:用anaconda配置好自己所需要的环境。

第二步:配置好环境之后,在终端进入环境

$ source activate pytorch

以我的环境为例,我的环境名字为pytorch。

第三步:使用anaconda安装ipykernel,很简单,只需执行一条命令:

$ conda install ipykernel

第四步:添加配置好的环境到jupyter notebook的kernel中:

$ python -m ipykernel install --user --name pytorch --display-name "pytorch"

将pytorch修改为你自己的环境名称。

第五步:运行jupyter notebook

$ jupyter notebook

执行到这一步就会自动弹出来网页,可以运行已经存在的程序,也可以new一个新的程序。点击new按钮可以查看可用的环境。

linux下jupyter notebook的使用:_第1张图片

你可能感兴趣的:(Ubuntu,jupyter,notebook,linux,anaconda)