c.NotebookApp.ip = '0.0.0.0' // 第296行
c.NotebookApp.open_browser = False // 第400行
c.NotebookApp.port = 8888 // 第424行,开放的端口号
c.NotebookApp.notebook_dir = '/home/' // 第392行,可以访问的目录
不过这样每次都有手动启动,不利于调试的方便,因此通常采用开机自启动操作。
[Unit]
Description=Jupyter Notebook
[Service]
Type=simple
User=fs # 需要更换为自己的用户名
ExecStart=/home/fs/.local/bin/jupyter-lab --port 8888 # 更换为自己的路径
WorkingDirectory=/home/ # notebook启动时的目录
[Install]
WantedBy=default.target
sudo systemctl enable jupyter
sudo systemctl start jupyter