notebooks-ai / notebooks-help

Issues with Notebooks.ai? Create an issue here!
https://notebooks.ai
MIT License
14 stars 5 forks source link

Are ipywidgets supported? #41

Open JavaFXpert opened 4 years ago

JavaFXpert commented 4 years ago

Are ipywidgets supported? I don't seem a slider displaying as a result of the following code:

from ipywidgets import *
def f(x):
    print(x * x)
interact(f, x=(0, 100));

Thanks, James Weaver