From 03e7886695702d1beeaff7c0c883bea396b528d3 Mon Sep 17 00:00:00 2001 From: Sebastien Jourdain Date: Tue, 31 Oct 2023 14:15:55 -0600 Subject: [PATCH] docs(tutorial): Add missing pip install --- docs/vitepress/guide/tutorial/application.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/vitepress/guide/tutorial/application.md b/docs/vitepress/guide/tutorial/application.md index 13a6ddad..524480ec 100644 --- a/docs/vitepress/guide/tutorial/application.md +++ b/docs/vitepress/guide/tutorial/application.md @@ -33,6 +33,12 @@ from trame.ui.vuetify import SinglePageLayout from trame.widgets import vtk, vuetify, trame ``` +But because we are adding `trame` to the list of widgets, we should add it to our environment by running + +```sh +pip install trame-components +``` + We are creating a single page application with a drawer (`trame.ui.vuetify`), and we want to use one of ***trame***'s predefined widgets (`trame.widgets`) for displaying and interacting with visualization pipelines. **Finally**, our VTK pipelines are fairly straight forward, but not available as one of the VTK examples. We will add the import for our VTK objects.