We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2f193 commit 17a7ac6Copy full SHA for 17a7ac6
.github/workflows/render.yml
@@ -18,7 +18,16 @@ jobs:
18
19
# Install quarto-live extension each build (fast)
20
- run: quarto add --no-prompt r-wasm/quarto-live
21
+ # ── NEW: install Python & Jupyter for notebook support ──
22
+ - name: Setup Python for Quarto
23
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: '3.x'
26
27
+ - name: Install Jupyter dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install jupyter nbformat nbclient
31
# (Optional) install python & deps if you execute notebooks
32
# - uses: actions/setup-python@v5
33
# with: { python-version: '3.11' }
0 commit comments