Questions tagged [jupyterhub]

JupyterHub is the best way to serve Jupyter notebook for multiple users.It is a multi-user Hub that spawns, manages, and proxies multiple instances of the single-user Jupyter notebook server.

The Jupyter Notebook

The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more.

669 questions
4
votes
1 answer

option to disable downloading from jupterlab and notebook

I am running jupyterlab with jupyterhub (on AWS with K8S) and using sensitive data, so i want to disable the option to download and export files from the lab to local machines. The only way i could think of doing this was to edit the jupyter lab &…
4
votes
1 answer

Not able to embed Jupyterlab running on Jupyterhub into an iframe

I am trying to integrate jupyterlab running with jupyterhub into an iframe. I made all the required changes in the configuration files. In the jupyter_notebook_config.py I have made the following changes. c.NotebookApp.tornado_settings =…
AS-Sher
  • 384
  • 1
  • 4
  • 18
4
votes
1 answer

JupyterHub singleuser not able to use tensorflow gpu support using systemdspawner

(this is a crossposting to SO, the jupyterhub issue tracker and the jupyterhub/systemdspawner issue tracker) I have a private JupyterHub Setup using a SystemdSpawner where I try to run tensorflow with gpu support. I followed the tensorflow…
ccauet
  • 363
  • 1
  • 2
  • 8
4
votes
0 answers

How to get JupyterHub to re-sync site-packages/libraries?

So I recently had this question where, among other problems, a completely commented out file was still running and working on JupyerHub, but not on the terminal. I figured out this is due to the fact that I was modifying the library files locally,…
ocean800
  • 3,489
  • 13
  • 41
  • 73
4
votes
2 answers

access jupyterhub on docker from external network

Docker is fairly new to me, I'm creating a jupyterhub container like that FROM ubuntu:18.04 LABEL maintainer="Jupyter Project " # install nodejs, utf8 locale, set CDN because default httpredir is unreliable ENV…
user1265067
  • 867
  • 1
  • 10
  • 26
4
votes
1 answer

pre-commit run The path python3.6 (from --python=python3.6) does not exist

I am trying to follow the contributing docs for JupyterHub and am getting an error when I run pre-commit run The error is related to my python version. It's expecting 3.6 for some reason even though everything was installed with Python 3.7.3. Here…
Nick Brady
  • 6,084
  • 1
  • 46
  • 71
4
votes
2 answers

JupyterHub kernel connection returns HTTP504 GATEWAY_TIMEOUT

I am deploying JupyterHub 0.8.2 to kubernetes (EKS on AWS, v1.13). When I deploy the JupyterHub application to EKS via helm, everything deploys and starts fine. However, when I spawn a notebook server and create a python notebook, the kernel hangs…
4
votes
3 answers

java.io.IOException: Could not read footer for file FileStatus when trying to read parquet file from Spark cluster from IBM Cloud Object Storage

I have created a Spark Cluster with 3 workers on Kubernetes and a JupyterHub deployment to attach to it so I can run huge queries. My parquet files are stored into IBM Cloud Object Storage (COS) and when I run a simple code to read from COS, I'm…
Bruno Faria
  • 549
  • 1
  • 6
  • 20
4
votes
2 answers

How to install JupyterHub with Docker on a local machine and in a sub domain

I will run JupyterHub in a sub domain. Here is the Dockerfile, jupyterhub_config.py, .gitlab-ci.yml. My first question is how to configure the jupyter_config.py. How can I load the jupyterhub_config.py on the build in the container? How do I start…
Aaron
  • 769
  • 1
  • 14
  • 25
4
votes
1 answer

Jupyterhub create user and home at login

I have set up a jupyterhub Server with an LDAP Authentification. The Server and the authentication work fine. But my problem is, that I need to create the user I want to login with manually on the Server else he doesn't have a home and I get this…
Radeonx
  • 191
  • 2
  • 14
4
votes
1 answer

AWS JupyterHub pyspark notebook to use pandas module

I have a docker container with JupyterHub installed, running on AWS cluster, as described here https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-jupyterhub.html. It has Python 3 kernel, PySpark 3, PySpark, SparkR, and Spark kernels, and inside…
lugger1
  • 1,843
  • 3
  • 22
  • 31
4
votes
0 answers

Bypassing login and passing env variables as url param in Jupyterhub kubernetes google cloud deployment

Let me tell you about my application. WHAT I WANT TO DO : My frontend make a get request to some URL with some url params like…
4
votes
1 answer

Interacting with Bokeh Server in JupyterHub

I've got a simple bokeh interaction notebook that captures the coordinates the user draws, and it works in Jupyter just fine: import numpy as np N = 500 x = np.linspace(0, 3, N) y = np.linspace(0, 3, N) xx, yy = np.meshgrid(x, y) z = np.sin(xx)…
Rich Signell
  • 14,842
  • 4
  • 49
  • 77
4
votes
3 answers

Jupyterhub service unavailable error and http :403 forbidden

I installed the jupyterhub server with use of Github account username and secret id. but i got service unavailable when I run jupyterhub service ( https://my system ip:8000). I have python3.6 installed. How to solve this…
4
votes
4 answers

Disable external IP on GKE nodes

I'm using Jupyterhub + Kubernetes to provide a hosted development environment for a large programming class (>100 students). It's running on top of GKE with autoscaling enabled. As additional students log in, more nodes are dynamically added to the…
nth
  • 1,442
  • 15
  • 12