We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Widgets load properly in VSCode as they do in Jupyter Notebook (Browser) and Jupyter Lab (Browser)
Widgets do not load properly
ipywidgets = "^8.0.0rc0"
from ipywidgets import widgets play = widgets.Play( value=50, min=0, max=100, step=1, interval=500, description="Press play", disabled=False ) slider = widgets.IntSlider() widgets.jslink((play, 'value'), (slider, 'value')) display(widgets.HBox([play, slider])) display(widgets.Checkbox( value=False, description='Check me', disabled=False, indent=False ))
Jupyter
Output
View
Info 14:46:52: Execute Cells request 0, 1, 2, 3 Info 14:46:52: Execute Cell 0 /fastscratch/projects/python/dev/test.ipynb Info 14:46:52: Execute Cell 1 /fastscratch/projects/python/dev/test.ipynb Info 14:46:52: Execute Cell 2 /fastscratch/projects/python/dev/test.ipynb Info 14:46:52: Execute Cell 3 /fastscratch/projects/python/dev/test.ipynb Info 14:46:53: Cell 0 executed with state Success Info 14:46:53: Cell 1 executed with state Success Info 14:46:53: Cell 2 executed with state Success Info 14:46:53: Cell 3 executed with state Success Error 14:46:53: Widget load failure [object Object] { className: 'CheckboxStyleModel', moduleName: '@jupyter-widgets/controls', moduleVersion: '2.0.0', cdnsUsed: false, isOnline: true, timedout: false, error: {} } Error 14:46:53: Widget load failure [object Object] { className: 'CheckboxStyleModel', moduleName: '@jupyter-widgets/controls', moduleVersion: '2.0.0', cdnsUsed: false, isOnline: true, timedout: false, error: {} }
The text was updated successfully, but these errors were encountered:
Dupe of #8552
Sorry, something went wrong.
DonJayamanne
No branches or pull requests
Environment data
Expected behaviour
Widgets load properly in VSCode as they do in Jupyter Notebook (Browser) and Jupyter Lab (Browser)
Actual behaviour
Widgets do not load properly
Steps to reproduce:
ipywidgets = "^8.0.0rc0"
Logs
Output for
Jupyter
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toJupyter
)Additional Settings
The text was updated successfully, but these errors were encountered: