Windows搭建Jupyter-lab服务,加入系统服务,开机自启。指定端口和默认路径,开启远程访问,配合公网ip,可远程工作。(未完成)

1. 概述

想在 Windows上搭建 Jupyter-lab服务,开启自启,有公网ip的同学还可以远程访问,实现远程办公。

1
conda install jupyterlab
1
2
3
4
5
6
nssm install JupyterLabService "jupyter-lab" "--config=C:\path\to\your\jupyter_config.json"


nssm install JupyterLabService "D:\develop\miniconda3\Scripts\jupyter-lab.exe" "--config=C:\path\to\your\jupyter_config.json"

sc create JupyterLabService binPath= "\"D:\develop\miniconda3\Scripts\jupyter-lab.exe\" --config=C:\path\to\your\jupyter_config.json" start= auto

使用以下命令来启动这个服务:

1
nssm start JupyterLabService

这将会启动 JupyterLab 服务,并让它使用你指定的 jupyter_server_config.json 配置文件。

1
2
3
4
nssm stop JupyterLabService


nssm remove JupyterLabService
使用 Hugo 构建
主题 StackJimmy 设计