Coding environment (Colab tips)

Okay. I tried and found the same thing. This is related to Colab and as the message says, “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.”

The simple solution is to add this code before the cell where you see this weird message.

from google.colab import output
output.enable_custom_widget_manager()
3 Likes