-
Notifications
You must be signed in to change notification settings - Fork 732
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
Default ipywidgets don't show up in notebooks #3020
Comments
Thanks for the report, we are aware of the issue and are going to roll out a fix. Downgrading ipywidgets to 7.7.1, as you noted, is the easiest fix in the meantine |
+1 to this issue. @kharvd your fix |
Same issue here for import ipywidgets as widgets
widgets.HTML('TEST') # or widgets.Label('TEST') And ipywidgets downgrading works. |
The fix for this should now be rolled out. If you are still seeing the issue, try deleting your runtime and connecting to a new one |
|
Describe the current behavior
Default ipywidgets like checkboxes stopped working, for example in this notebook https://colab.research.google.com/github/jupyter-widgets/ipywidgets/blob/master/docs/source/examples/Using%20Interact.ipynb
Line
interact(f, x=10);
works as expected (shows a slider), but runninginteract(f, x=True);
results in a sidebar popup "Support for third party widgets (widgets outside of the ipywidgets package) needs to be enabled separately. Support for these widgets will be loaded from a CDN external from Colab." and no checkbox is displayed.Running the suggested snippet doesn't seem to help.
Adding
!pip install "ipywidgets>=7,<8"
before theipywidgets
import fixes the issue.Describe the expected behavior
Checkboxes and other interactive widgets from
ipywidgets
work with the latest version ofipywidgets
.What web browser you are using
Chrome
Additional context
https://colab.research.google.com/github/jupyter-widgets/ipywidgets/blob/master/docs/source/examples/Using%20Interact.ipynb
The text was updated successfully, but these errors were encountered: