0

I used this answer to build a requirements.txt file for my Jupyter notebook. I then put both the ipynb and requirements.txt file in a Git repo and published it to Binder. As I understand, this should give me an interactive version of my notebook which I can share with people for them to play around with.

The published Binder can be found here.

Does anyone know why the interactive bit is not showing? Specifically, the sliders.

Thev
  • 1,105
  • 2
  • 13
  • 24

1 Answers1

1

You need to enable the extension that allows the sliders, namely ipywidgets. There is an example of using ipywidgets presently here among the Binder example template repos. (If that repo gets altered, I was talking about this specific commit.)
Right now the extension gets enabled separately for JupyterLab vs the classic interface. If you just want to have your launches default to the classic interface, you can leave out the JupyterLab-related enabling.

Wayne
  • 6,607
  • 8
  • 36
  • 93