-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
Running in Google Colab #29
Comments
Some related notes. |
Same issue here, if you want to test this notebook, I also install miniconda on it |
I had the same issue when I tried to plot the mesh. However, I found the following workaround:
|
@danielgrittner Thanks, this is quite helpful! @skoch9 shall we integrate this into the main codebase? |
@danielgrittner thanks for the tip! However, I tried installing it as suggested by @albertotono with conda and also by using Update: It now works with some changes, see here. Old error was:
|
Hi @a-nau , I am facing the same issue (see jupyter-widgets/pythreejs#388 and googlecolab/colabtools#3159), without a solution. Thanks! |
Hi @francesco-ballarin , my working version is linked in my answer and here. Not tested, but this should work: import meshplot as mp
from IPython.display import display, HTML
p = mp.plot(...)
html = p.to_html(imports=True, html_frame=False)
display(HTML(html)) |
I'm trying to use meshplot in a Google Colab notebook, however when I use mp.plot instead of displaying the mesh all I get is:
<meshplot.Viewer.Viewer at 0x7f9ec04dfc88>
Is there any known way to get meshplot working in Colab?
The text was updated successfully, but these errors were encountered: