JupyterHub Installation and Configuration
sudo -iconda install -c conda-forge jupyterhubmkdir /etc/jupyterhub/
cd /etc/jupyterhub/
jupyterhub --generate-confignano /etc/jupyterhub/jupyterhub_config.py# Allow Jupyter Lab as the default interface
c.Spawner.default_url = '/lab'
# Allow admin to access other users' accounts
c.JupyterHub.admin_access = True
# Specify JupyterHub administrators & user login
c.Authenticator.admin_users = {'admin1'}
c.Authenticator.allow_all = True
# Shutdown user servers on logout
c.JupyterHub.shutdown_on_logout = True
# Prevent the user-owned configuration files from being loaded
c.Spawner.disable_user_config = TrueLast updated