Difficulty in setting up vtkpython

Hi @simplyvish,

We’ve created trame for streamlining the usage of VTK or ParaView in the web with little to no web knowledge.

That example is doing remote rendering with geometry, but it can easily be extended to support volume rendering using plain VTK.

To run that example you can do the following

git clone https://github.com/Kitware/trame.git # just to get examples
cd trame
python3.9 -m venv .venv
source .venv/bin/activate
pip install -U pip
pip install trame
pip install vtk
python ./examples/VTK/ContourGeometry/RemoteRendering.py

You might also be interested by our tutorial [video] and that volume rendering example.

1 Like