acsresearch / interlab

MIT License
17 stars 3 forks source link

`TracingNode.display()` does not work in Google Colab #65

Open gavento opened 5 months ago

gavento commented 5 months ago

As the title says, TracingNode.display() does not work in Google Colab. E.g. the following code should produce a static HTML browser of the given tree context. It works in a Jupyter notebook but not in Google Colab.

with TreeTrace("foo") as c:
   pass
c.display()
spirali commented 5 months ago

This is very weird. I have put some logging in the code and it seems that remote Javascript is loaded and full initialization is performed without error only "nothing is displayed". It also seems also that remote script sees elements created by the local JS code, so far I do not see reason why it does not work.