-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best way to install additional Kernels? #608
Comments
Yes. The way to modify what is available to users in terms of kernels, notebook extensions is to switch out the singleuser image. You can probably start from an existing one like you suggested with the |
Are there special components that enable the k8s integration or will the base image suffice? Where is the Dockerfile for the jupyterhub/k8s-singleuser-sample:v0.6 to review? The only Kernel that seems to be available in the image is python. Why not provide a sort of Kernel package manager or add some documentation on how to get additional kernels? Will I need to rebuild the single-user image for each upgrade of jupyterhub and only use the version specific base image that is coupled with each jupyter build? |
Another option is to check out https://zero-to-jupyterhub.readthedocs.io/en/latest/user-environment.html#build-a-custom-docker-image-with-repo2docker . repo2docker will build a jupyterhub-ready docker image using the text files inside of a repository to install the kernel needed to run the code. In terms of the documentation, are you expecting to see a section called "Installing non-python kernels"? (I'm trying to think here of the modification that would make this more obvious to users)
repo2docker/binderhub gets you part of the way towards kernels on demand, in terms of a more generic "Kernel package manager", that sounds like a fairly complex proposition though it is a cool idea. Don't forget we're an open-source project so depend on community developer time :-) |
The only Kernel that seems to be available in the image is python. Why
not provide a sort of Kernel package manager or add some documentation on
how to get additional kernels?
We totally should add additional documentation! #499 #498 are related I
think. What kinda docs would you have linked to see?
Will I need to rebuild the single-user image for each upgrade of
jupyterhub and only use the version specific base image that is coupled
with each jupyter build?
Yes, you will need to make sure that the JupyterHub version in the chart
matches the version of JupyterHub package in your user container.
Where is the Dockerfile for the jupyterhub/k8s-singleuser-sample:v0.6 to
review?
See
https://github.com/jupyterhub/zero-to-jupyterhub-k8s/tree/master/images/singleuser-sample
…On Wed, Mar 28, 2018 at 8:26 AM, Chris Holdgraf ***@***.***> wrote:
Another option is to check out https://zero-to-jupyterhub.
readthedocs.io/en/latest/user-environment.html#build-a-
custom-docker-image-with-repo2docker . repo2docker will build a
jupyterhub-ready docker image using the text files inside of a repository
to install the kernel needed to run the code.
In terms of the documentation, are you expecting to see a section called
"Installing non-python kernels"? (I'm trying to think here of the
modification that would make this more obvious to users)
The only Kernel that seems to be available in the image is python. Why not
provide a sort of Kernel package manager or add some documentation on how
to get additional kernels?
repo2docker/binderhub gets you part of the way towards kernels on demand,
in terms of a more generic "Kernel package manager", that sounds like a
fairly complex proposition though it is a cool idea. Don't forget we're an
open-source project so depend on community developer time :-)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#608 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAB23rBDAxYY7KIBdcNrQiiquE9DtNf9ks5ti6uOgaJpZM4S9mcK>
.
--
Yuvi Panda T
http://yuvi.in/blog
|
I guess I'd like to see a section titled "Installing additional kernels" Obviously in a persistent way of course. The "https://zero-to-jupyterhub.readthedocs.io/en/latest/user-environment.html#build-a-custom-docker-image-with-repo2docker" does have some useful information. Or maybe incorporate the building of the base-notebook into the helm deployment? I dunno. Bit nervous about compatibility when I upgrade. Not too fond of having to rebuild the docker image for every upgrade. I started playing with a potential Dockerfile here. I'll try out repo2docker and get back. I'll try out a few options.
|
@slecrenski note that the rebuild should only be needed if the version of JupyterHub that the Helm Chart uses becomes different from the one in your image. @yuvipanda correct me if I'm wrong on that one. I like the idea of "add your own kernels". @slecrenski let us know when you've got something that works nicely for you, and perhaps we can use this to prototype a docs addition |
Having some more concrete examples of modified user environments would be good. How would a "install additional kernels" section look though? It feels like the only generic advice we can give is "follow the instructions in the documentation for the kernel you want to install". Maybe link out to an externally maintained example of adding a not-python based kernel to a docker image (for jupyterhub)? |
I have already a pretty rich setup that involves extra kernels (e.g. Apache Toree for Spark), plotting widgets support (bokeh, plotly) and RStudio server. It is based on datascience notebook, but inherits from minimal notebook, as the former works on e.g. old protobuf (and I need new one for Tensorflow 1.6). How about I document how it works? It's pretty obvious for anyone familiar with Docker, but:
Let me know if you would find it useful! |
@tracek What is the Rstudio Integration? Would this not be solved with a dropdown of different docker images? jupyterhub/kubespawner#137 |
Hey everybody, I wrote a few lines on how to integrate Spark on Kubernetes into Jupyterhub at #1030. Maybe this helps somebody who stumbles upon this issue. Feel free to leave feedback. |
Is there any easy way to add python2.7 kernel to the single user image? I tried all the above ways but the kernel does not appear and seems not to be installed.
I'm mounting a directory from the host to the container with a prespawn hook. |
Im not sure, but perhaps there is details like this to be learned from the jupyter/docker-stacks repo. The images created from Dockerfile's in that repo works fine with z2jh and have multiple kernels installed |
https://ipython.readthedocs.io/en/latest/install/kernel_install.html#kernels-for-python-2-and-3 suggests |
@manics @consideRatio Thank you for your replies. I have successfully added nodejs and python2 kernels with the following Dockerfile:
Nodejs and python2 kernels work fine. However, R kernel keeps restarting and hangs forever. Any ideas about what could be done? |
I'm closing this as it's quite old and it's a support issue related to the singleuser side, not Z2JH. If you're still having problems please post on the Jupyter Community Forum. Thanks! |
I am adding my comment here after working for 3 days on adding another conda Kernel to the JupyterLab base images. The startup
In JupyterHub/Kubernetes, the kernel spec was not linked and I had to re-run the above, so the user could select singleuser:
image:
# You should replace the "latest" tag with a fixed version from:
# https://hub.docker.com/r/jupyter/datascience-notebook/tags/
# Inspect the Dockerfile at:
# https://github.com/jupyter/docker-stacks/tree/HEAD/datascience-notebook/Dockerfile
name: registry.gitlab.mydomain.org/my/custom/singleuser-user-k8s
tag: v0.1.10
# `cmd: null` allows the custom CMD of the Jupyter docker-stacks to be used
# which performs further customization on startup.
cmd: null My solution was to modify
|
Documentation on the readthedocs makes no mention of how to add additional Kernels.
https://zero-to-jupyterhub.readthedocs.io/en/latest/search.html?q=kernel&check_keywords=yes&area=default
jupyterhub/k8s-singleuser-sample:v0.6 seems to only contains a Python 3 kernel.
What is the best way to install additional Kernels?
Looking for Spark, golang, R etc.
Something like this.
https://hub.docker.com/r/jupyter/all-spark-notebook/
Do I need to create my own image from a new Dockerfile?
Thanks. Nice framework btw.
The text was updated successfully, but these errors were encountered: