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
|