Open aleprezervtech opened 3 years ago
Thanks @aleprezervtech for reporting the issue. Does this also give you the same error message?
from vedo import load, show
vol = load('https://vedo.embl.es/examples/data/vase.vti')
show(vol)
You can also try:
from vedo import load, show, embedWindow
embedWindow(False)
vol = load('https://vedo.embl.es/examples/data/vase.vti')
show(vol)
I tried your version. In that case the kernel unfortunately dies...
In both cases? Are you able to run it from a nornal python script outside jupyter? what is your operative system?
I am using the Jypiter server on Linux and MacOs as my client. I can try to run it locally on the Mac since I do not have an X server on the server.
Ah that's why! Try following these steps: https://github.com/marcomusy/vedo/issues/64#issuecomment-559979201 If it doesn't help give me a couple of days to test it before the next release.
Thank you. I wanted the vti image to be displayed as a standard image inside the notebook, rather than using the X11 server forwarding to my Mac. I am not sure if that is possible at this point...
I see - I'm not 100% if it's possible, I'll get back to you when i can.
Hi @marcomusy,
I would like to visualize a VTI file that correctly visualizes in Paraview in a Jypiter Notebook. I am executing the following in the Jupyter notebook:
I get the following error:
Did I do something wrong or is this a bug? Thanks!