当前位置:   article > 正文

linux如何查看jupyter日志_linux系统下jupyterlab安装及配置完整教程

如何查看jupyterlab日志

jupyterlab安装及配置完整教程

=========================================

1、查看pip 版本

#pip -V

如果没有安装pip,需要安装一下

#wget https://bootstrap.pypa.io/get-pip.py

#python get-pip.py

2、安装jupyterlab

#/usr/bin/pip install jupyterlab

如果出现类似的警告,可以直接输入#echo $? ,如果返回值为0,就可以直接进行第三步,配置jupyter

3、配置jupyter

#jupyter notebook –generate-config –allow-root

#vim /root/.jupyter/jupyter_notebook_config.py

找到这一行#c.NotebookApp.allow_root = False 去掉#,并修改成True即可解决root权限运行的问题,c.NotebookApp.allow_root =True保存,然后重启jupyter

#jupyter notebook

4、执行#ipython

In [1]: from notebook.auth import passwd

In [2]: passwd()

两次确认密码之后,会得到一个加密的sha1密码段

sha1:9f7be0ce4275:163fe21b02f70197924ecf93627eb145cce6d52e

然后复制 ‘sha1:9f7be0ce4275:163fe21b02f70197924ecf93627eb145cce6d52e’ 粘贴至配置文件、root/.jupyter/jupyter_notebook_config.py(记得去掉 #)

c.NotebookApp.password = u’sha1:9f7be0ce4275:163fe21b02f70197924ecf93627eb145cce6d52e’

5、其他配置

c.NotebookApp.ip= ‘localhost’ //设置允许访问ip

c.NotebookApp.open_browser= True(True:启动时自动打开浏览器,False:需手动打开浏览器访问http://localhost:8888/tree)

c.NotebookApp.port= 8888 //端口设置

6、调至后台运行

jupyter notebook启动ipython后不需要我们再做任何输入,也不能输入,只能通过当前窗口查看jupyter 的运行情况和运行日志,占用了一个terminal 窗口,完全没必要。当远程连接到服务器时,ssh窗口可能会自动断开,影响程序运行。

1.入门级: jupyter notebook --allow-root > jupyter.log 2>&1 &

2.进阶版: nohup jupyter notebook --allow-root > jupyter.log 2>&1 &

jupyter.log这个文件保存交互日志。可以用tail,head等命令查看。付出是用来忘记的,回报时悄然而至的。不要让梦想,只是梦想!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/245115
推荐阅读
相关标签
  

闽ICP备14008679号