[I 2015-12-14 15:22:32.833 JupyterHub spawner:363] Spawning jupyterhub-singleuser --user=grant --port=49311 --cookie-name=jupyter-hub-token-grant --base-url=/user/grant --hub-prefix=/hub/ --hub-api-url=http://localhost:8081/hub/api --ip=localhost
Failed to set groups [Errno 1] Operation not permitted
[E 2015-12-14 15:22:32.848 JupyterHub orm:382] Unhandled error starting grant's server: Exception occurred in preexec_fn.
How can I allow for multiple users to have access to jupyterhub, even if jupyterhub is not being started on that user's account?
I have also been getting this error
/usr/local/lib/python3.4/site-packages/IPython/utils/traitlets.py:5: UserWarning: IPython.utils.traitlets has moved to a top-level traitlets package.warn("IPython.utils.traitlets has moved to a top-level traitlets package.")
ipython (4.0.1)
ipython-genutils (0.1.0)
jupyter-client (4.1.1)
jupyter-core (4.0.6)
jupyterhub (0.4.0.dev0
FileNotFoundError: [Errno 2] No such file or directory: 'jupyterhub-singleuser'
alias jupyterhub='/usr/local/bin/jupyterhub'
/usr/local/bin/jupyterhub
raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: jupyterhub==0.4.0.dev0
# EASY-INSTALL-DEV-SCRIPT: 'jupyterhub==0.4.0.dev0','jupyterhub'
__requires__ = 'jupyterhub==0.4.0.dev0'
__import__('pkg_resources').require('jupyterhub==0.4.0.dev0')
__file__ = '/home/centos/jupyterhub/scripts/jupyterhub'
exec(compile(open(__file__).read(), __file__, 'exec'))
So then I try to pip install the __file__, but I get this:
/home/centos/jupyterhub/scripts/jupyterhub should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+
So I have not been using a config file and I have exported the path of jupyterhub in the ~/.bash_profile. However, I have been having the same issue as before. Where would I have to download the jupyterhub so it will accessible for all system users?
--
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/7719e83a-1178-4751-8d4d-3875fed7a710%40googlegroups.com.
#!/usr/local/bin/python3.4
# EASY-INSTALL-DEV-SCRIPT: 'jupyterhub==0.4.0.dev0','jupyterhub'
__requires__ = 'jupyterhub==0.4.0.dev0'
__import__('pkg_resources').require('jupyterhub==0.4.0.dev0')
__file__ = '/root/jupyterhub/scripts/jupyterhub'
exec(compile(open(__file__).read(), __file__, 'exec'))
I am still getting the same error everytime I try to log onto jupyterhub and I am not sure why. I dont know where I should download jupyterhub so all the system users will have access.