Skip to content
Snippets Groups Projects
Commit e3f4db2b authored by Lars Bilke's avatar Lars Bilke
Browse files

[web] Removed pyvista static rendering description.

Is currently not supported on the deployed user container.
parent de80e57e
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment