--
You received this message because you are subscribed to the Google Groups "Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+u...@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/253765bd-0d52-4475-a4d5-376697d5fe22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Finally I created a .service file in /etc/systemd/system, called it jupyternotebook.service and enabled it.Would there be something I can do to give it only user access, but running it as a service?
[Unit] Description=<a description you give> Wants=network-online.target After=network-online.target [Service] User=<intended user> TimeoutStartSec=10 ExecStart=/usr/bin/jupyter notebook --config=<path to your jupyter notebook config file> [Install] WantedBy=multi-user.target