We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f852837 commit d23c26fCopy full SHA for d23c26f
build/brev-script.bash
@@ -22,7 +22,7 @@ source ~/pyhpc-tutorial/.venv/bin/activate
22
uv pip install -r ~/pyhpc-tutorial/build/requirements.txt
23
24
# Create a Jupyter service
25
-cat >/etc/systemd/system/jupyterlab.service <<'EOF'
+cat >jupyterlab.service <<'EOF'
26
[Unit]
27
Description=JupyterLab
28
After=network-online.target
@@ -41,5 +41,6 @@ RestartSec=5
41
WantedBy=multi-user.target
42
EOF
43
44
-systemctl daemon-reload
45
-systemctl enable --now jupyterlab.service
+sudo mv jupyterlab.service /etc/systemd/system/jupyterlab.service
+sudo systemctl daemon-reload
46
+sudo systemctl enable --now jupyterlab.service
0 commit comments