# create a file and (name your wish) , then add this content to the file. # OR # sudo vim /etc/systemd/system/jupyter-lab.service # paste code below # Esc , shift z z [Unit] Description=Start Jupyter Lab Server at Boot [Service] Type=simple ExecStart=/home/$USER//bin/jupyter lab --allow-root --no-browser --config=/home/$USER/.jupyter/jupyter_notebook_config.py WorkingDirectory=$HOME Restart=always RestartSec=10 # sudo systemctl enable jupyter-lab.service # sudo systemctl start jupyter-lab.service [Install] WantedBy=multi-user.target