Skip to content
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

Jupyter notebook docker image not supporting Dtale. #833

Open
go-kool opened this issue Dec 15, 2023 · 1 comment
Open

Jupyter notebook docker image not supporting Dtale. #833

go-kool opened this issue Dec 15, 2023 · 1 comment

Comments

@go-kool
Copy link

go-kool commented Dec 15, 2023

Hi Dtale Team,

We are using our own custom jupyter noebook docker image and running it on a Kubernetes env. When we are trying to run DTale on Jupyter notebook I am not able to see the output. Please suggest us how can we enable Dtale in our notebooks.

Below is the output
image

Here is our custom Dockerfile.

FROM ubuntu:latest
ENV SHELL=/bin/bash
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y wget bzip2
RUN wget --quiet https://repo.anaconda.com/archive/Anaconda3-2021.05-Linux-x86_64.sh -O ~/anaconda.sh &&
/bin/bash ~/anaconda.sh -b -p /opt/anaconda3 &&
rm ~/anaconda.sh
ENV PATH /opt/anaconda3/bin:$PATH
RUN conda install -y jupyter
ENV JUPYTER_TOKEN=Notebook
WORKDIR /home/Notebook
RUN pip install dtale
EXPOSE 8888
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root", "--NotebookApp.base_url=/Notebook"]

@aschonfeld
Copy link
Collaborator

Have you taken a look at this doc?

If that doesn't work then you can try adding jupyter-server-proxy to your docker-compose and then use this setup

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants