From e3f4db2b81b8cca9802332f118422a80435668d8 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Thu, 28 Apr 2022 10:24:11 +0200 Subject: [PATCH] [web] Removed pyvista static rendering description. Is currently not supported on the deployed user container. --- .../basics/jupyter-notebooks/index.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/web/content/docs/userguide/basics/jupyter-notebooks/index.md b/web/content/docs/userguide/basics/jupyter-notebooks/index.md index 0d8cc655a28..21258cd096e 100644 --- a/web/content/docs/userguide/basics/jupyter-notebooks/index.md +++ b/web/content/docs/userguide/basics/jupyter-notebooks/index.md @@ -125,22 +125,6 @@ Please note that this is a temporary installation. If you stop the container the ### Rendering with PyVista -When using [PyVista][pyvista] the container uses the (interactive) [pythreejs](https://docs.pyvista.org/user-guide/jupyter/pythreejs.html) rendering backend per default. If you want to output static images there are a couple of ways to configure the 'static' rendering backend: - -- Globally as an environment variable: `PYVISTA_JUPYTER_BACKEND=static`. This can be defined when starting the container: - ```bash - docker run ... -e PYVISTA_JUPYTER_BACKEND=static ... - ``` -- Globally as a pyvista setting: - ```python - import pyvista as pv - pv.set_jupyter_backend('static') - ``` -- Locally on each plot: - ```python - import pyvista as pv - ... - pv.show(jupyter_backend='static') - ``` +When using [PyVista][pyvista] the container uses the (interactive local rendering) [pythreejs](https://docs.pyvista.org/user-guide/jupyter/pythreejs.html) rendering backend per default. Other backends are currently not supported. [pyvista]: https://docs.pyvista.org -- GitLab