在远程服务器上配置jupyter notebook
每次打开终端然后输入jupyter notebook
的启动方式太麻烦了,于是想到用nohup命令在后台运行的方式,一次启动,一直运行,配置好端口之后,本地浏览器也可以一直访问。
一 生成jupyter配置文件
激活想要jupyter运行的conda环境,运行 jupyter notebook --generate-config
命令,生成jupyter_notebook_config.py
二 编辑配置文件
运行:vim ~/.jupyter/jupyter_notebook_config.py
,在文件末尾添加以下内容:
1 | c.NotebookApp.allow_remote_access = True #允许远程连接 |
三 启动jupyter
命令: nohup jupyter notebook > notebook.log 2>&1 &
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Brainupdating!
评论
ValineDisqus