cytoscape / ipycytoscape

A Cytoscape Jupyter widget
https://ipycytoscape.readthedocs.io/en/master/
BSD 3-Clause "New" or "Revised" License
261 stars 62 forks source link

Error displaying widget: model not found #352

Open dhilst opened 3 months ago

dhilst commented 3 months ago

Bug report

I receive this error when I try to render an arbitrary graph: Error displaying widget: model not found

Bug summary

Code for reproduction

I followed the networkx example

import ipycytoscape
import ipywidgets as widgets
import networkx as nx
G = nx.complete_graph(5)
undirected = ipycytoscape.CytoscapeWidget()
undirected.graph.add_graph_from_networkx(G)
display(undirected)

Actual outcome

image

Expected outcome

Version Info