Last active
May 6, 2023 14:18
-
-
Save gtirloni/d4c3ffcce107b6ee79e2b50c0e0e8683 to your computer and use it in GitHub Desktop.
Revisions
-
gtirloni revised this gist
May 6, 2023 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ ``` $ vi $HOME/.config/systemd/user/jupyter-lab.service $ systemctl --user daemon-reload $ systemctl --user enable jupyter-lab $ systemctl --user start jupyter-lab ``` -
gtirloni revised this gist
May 6, 2023 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ $ vi $HOME/.config/systemd/user/jupyter-lab.service $ systemctl --user daemon-reload $ systemctl --user enable jupyter-lab $ systemctl --user start jupyter-lab -
gtirloni created this gist
May 6, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ [Unit] Description=JupyterLab After=network-online.target Wants=network-online.target [Service] ExecStart=/usr/bin/jupyter lab --no-browser Restart=on-failure RestartSec=7 RestartPreventExitStatus=3 [Install] WantedBy=default.target