Hi all,
I used docker to install jupyterhub. I was able to access the jupyterhub ui , but I am unable to start the server.
Following is the error message I am getting
Follwing is the config I specified:
c = get_config() #noqa
c.Spawner.default_url = ‘/lab’
c.Authenticator.whitelist = {‘user1’, ‘user2’}
c.Authenticator.admin_users = {‘admin’}
c.JupyterHub.authenticator_class = ‘dummy’
c.DummyAuthenticator.password = “yourpassword”
c.JupyterHub.spawner_class = ‘jupyterhub.spawner.LocalProcessSpawner’
c.Spawner.user = ‘admin’