jupyter-lab设置自启动及远程连接开发环境
短信预约 -IT技能 免费直播动态提醒
1 创建JupyterLab运行脚本
首先找到jupyter-lab命令的位置,一般在~/.local/bin/下,可以创建shell脚本autoJupyterLab.sh:
#!/bin/sh
/home/myjetson/.local/bin/jupyter-lab
测试一下脚本的正确性::
./autoJupyterLab.sh
远程连接JupyterLab成功,说明运行脚本没问题。
2 添加JupyterLab Service文件
Ubuntu18通过systemd管理服务,因此添加服务来开机运行JupyterLab脚本。
服务Service保存在/lib/systemd/system和/etc/systemd/system下。在/etc/systemd/system下创建auto-jupyter.service服务:
[Unit]
Description=Auto Load JupyterLab
After=network.target
[Service]
Type=simple
User=your_username
ExecStart=/your_script_dir/autoJupyterLab.sh
Restart=on-failure
RestartSec=15s
[Install]
WantedBy=multi-user.target
3 设置Jupyter Service自启动
让systemd重新加载service文件:
sudo systemctl daemon-reload
然后设置auto-jupyter.service开机自启:
sudo systemctl enable auto-jupyter.service
这样配置就完成了。
4 测试自启动服务
试着手动运行auto-jupyter.service,看看服务写的有没有问题:
sudo systemctl start auto-jupyter.service
sudo systemctl status auto-jupyter.service
重启服务器,远程连接jupyterlab,大功告成!
到此这篇关于jupyter-lab设置自启动及远程连接开发环境的文章就介绍到这了,更多相关jupyter-lab设置自启动及远程连接内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341