Skip to content

Commit 65669b9

Browse files
lorenzocerroneCopilot
andcommitted
update readme installation
Co-authored-by: Copilot <copilot@github.com>
1 parent 48d766c commit 65669b9

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,22 @@ Each notebook is self-contained: it declares its own dependencies inline and mar
88

99
Click the **Open in molab** badge next to any notebook in the table below to run it in your browser via [molab](https://molab.marimo.io). No local setup required — a free molab account is needed to execute cells.
1010

11+
> Warning: we observed some issues when leaving a molab notebook idle for a long time, or when going in and out of the notebook. If you encounter errors close tha tab re-open the notebook.
12+
1113
## Running locally
1214

1315
### Prerequisites
1416

1517
- [uv](https://docs.astral.sh/uv/getting-started/installation/)
1618

19+
On Unix-like systems (Linux, macOS):
1720
```bash
1821
curl -LsSf https://astral.sh/uv/install.sh | sh
1922
```
23+
and, on Windows:
24+
```powershell
25+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
26+
```
2027

2128
### Running a notebook
2229

docs/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,16 @@ <h1>ngio Workshop</h1>
2727
<div class="run-option">
2828
<div class="run-option-label">In the cloud</div>
2929
<p>Click the Open in molab badge next to any notebook below to run it in your browser via <a href="https://molab.marimo.io">molab</a>. No local setup required — a free account is needed to execute cells.</p>
30+
<p><strong>Heads up:</strong> if a molab tab sits idle for a long time, or you navigate away and back, you may see errors. Close the tab and reopen the notebook.</p>
3031
</div>
3132
<div class="run-option">
3233
<div class="run-option-label">Locally</div>
33-
<p>The notebooks are self-contained and manage their own dependencies. You only need <a href="https://docs.astral.sh/uv/">uv</a> installed.</p>
34+
<p>The notebooks are self-contained and manage their own dependencies. You only need <a href="https://docs.astral.sh/uv/getting-started/installation/">uv</a> installed.</p>
35+
<p>On Unix-like systems (Linux, macOS):</p>
36+
<pre><code>curl -LsSf https://astral.sh/uv/install.sh | sh</code></pre>
37+
<p>and, on Windows:</p>
38+
<pre><code>powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"</code></pre>
39+
<p>Then clone the repository and launch a notebook:</p>
3440
<pre><code>git clone https://github.com/BioVisionCenter/ngio-workshop.git
3541
cd ngio-workshop
3642
uvx marimo edit --sandbox notebooks/&lt;notebook&gt;.py</code></pre>

0 commit comments

Comments
 (0)