-
Notifications
You must be signed in to change notification settings - Fork 268
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
Error in show() with a VTI file #285
Comments
Thanks @aleprezervtech for reporting the issue. 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? |
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! |
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!
The text was updated successfully, but these errors were encountered: