jupyter-widgets-contrib / ipycanvas

Interactive Canvas in Jupyter
https://ipycanvas.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
688 stars 64 forks source link

ipycanvas 0.13.1 does not work with google colab. 0.13 works. #318

Closed williamnavaraj closed 5 months ago

williamnavaraj commented 1 year ago

As the title says, ipycanvas 0.13.1 seems to not work with google colab. 0.13 works.

Code:

!pip install ipycanvas==0.13.1

from google.colab import output
output.enable_custom_widget_manager()

from ipycanvas import Canvas
testipycanvas = Canvas(width = 20, height = 20)
testipycanvas.fill_style = "green"
testipycanvas.fill_rect(0,0,20)
display(testipycanvas)

Related to #170 ???

williamnavaraj commented 5 months ago

ipycanvas-0.13.2 works. Closing this issue.