You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/notebooks/README.md
+10-18Lines changed: 10 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,15 @@ Welcome to the Data Designer tutorial series! These hands-on notebooks will guid
6
6
7
7
### Local Setup Best Practices
8
8
9
-
The notebooks can be downloaded using the link on the top of each of them.
10
-
To run them locally, we recommend using a virtual environment to manage dependencies:
9
+
First, download the tutorial [from the release assets](https://github.com/NVIDIA-NeMo/DataDesigner/releases/latest/download/data_designer_tutorial.zip).
10
+
To run the tutorial notebooks locally, we recommend using a virtual environment to manage dependencies:
11
11
12
12
=== "uv (Recommended)"
13
13
14
14
```bash
15
-
# Create a new project directory
16
-
mkdir data-designer-tutorials
17
-
cd data-designer-tutorials
18
-
19
-
# Initialize a new uv project
20
-
uv init
21
-
22
-
# Add data-designer and jupyter
23
-
uv add data-designer jupyter
15
+
# Extract tutorial notebooks
16
+
unzip data_designer_tutorial.zip
17
+
cd data_designer_tutorial
24
18
25
19
# Launch Jupyter
26
20
uv run jupyter notebook
@@ -29,15 +23,13 @@ To run them locally, we recommend using a virtual environment to manage dependen
29
23
=== "pip + venv"
30
24
31
25
```bash
32
-
# Create a new project directory
33
-
mkdir data-designer-tutorials
34
-
cd data-designer-tutorials
26
+
# Extract tutorial notebooks
27
+
unzip data_designer_tutorial.zip
28
+
cd data_designer_tutorial
35
29
36
-
# Create and activate a virtual environment
30
+
# Create Python virtual environment and install required packages
37
31
python -m venv venv
38
32
source venv/bin/activate
39
-
40
-
# Install data-designer and jupyter
41
33
pip install data-designer jupyter
42
34
43
35
# Launch Jupyter
@@ -117,4 +109,4 @@ Quick reference guides for the main configuration objects:
117
109
-**[column_configs](../code_reference/column_configs.md)** - All column configuration types
118
110
-**[config_builder](../code_reference/config_builder.md)** - The `DataDesignerConfigBuilder` API
119
111
-**[data_designer_config](../code_reference/data_designer_config.md)** - Main configuration schema
0 commit comments