Test out PyVista’s Jupyter Backend#

Become familiar with PyVista Jupyter backend.

import pyvista as pv

# Set/enable the backed
pv.set_jupyter_backend('trame')
jupyter

Client-side rendering only (in browser)

pl = pv.Plotter()
pl.add_mesh(pv.ParametricRandomHills().elevation())
pl.show(jupyter_backend='client')
jupyter
/home/runner/.virtualenvs/.venv/lib/python3.10/site-packages/pyvista/plotting/plotter.py:6665: UserWarning: Not within a jupyter notebook environment.
Ignoring ``jupyter_backend``.
  warnings.warn(

Server-side rendering only

pl = pv.Plotter()
pl.add_volume(pv.Wavelet())
pl.show(jupyter_backend='server')
jupyter
/home/runner/.virtualenvs/.venv/lib/python3.10/site-packages/pyvista/plotting/plotter.py:6665: UserWarning: Not within a jupyter notebook environment.
Ignoring ``jupyter_backend``.
  warnings.warn(
Open In Colab

Total running time of the script: (0 minutes 1.763 seconds)

Gallery generated by Sphinx-Gallery