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: README.md
+60Lines changed: 60 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,14 @@ An overview of the content can be found at [notebooks/Index.ipynb](notebooks/Ind
10
10
11
11
If you have a Google/Gmail account, you can Run this tutorial from your browser using Colab: [](https://colab.research.google.com/github/vitessce/vitessce-python-tutorial-2026/blob/main/notebooks/Index.ipynb).
12
12
13
+
### Molab
14
+
15
+
If colab is not working, you can try Molab instead:
Prior tutorial materials can be found in https://github.com/vitessce/vitessce-python-tutorial-2023.
@@ -19,3 +27,55 @@ Prior tutorial materials can be found in https://github.com/vitessce/vitessce-py
19
27
20
28
The format and structure of these tutorial materials are inspired heavily by the [Gosling Tutorial](https://github.com/gosling-lang/gosling-tutorial) created by Sehi L'Yi, Trevor Manz, Qianwen Wang, and Nils Gehlenborg.
21
29
30
+
## Local usage
31
+
32
+
To use these notebooks locally, clone the repository:
We recommend using [uv](https://docs.astral.sh/uv/#installation).
40
+
41
+
Create the virtual environment:
42
+
43
+
```sh
44
+
uv venv --python 3.12
45
+
```
46
+
47
+
Activate the virtual environment:
48
+
49
+
```sh
50
+
source .venv/bin/activate
51
+
```
52
+
53
+
Install:
54
+
55
+
```sh
56
+
uv add --requirements requirements.txt
57
+
```
58
+
59
+
Run the notebooks
60
+
61
+
```sh
62
+
uv run jupyter lab
63
+
```
64
+
65
+
When running the notebooks locally, ignore (i.e., do not run) the `!pip install` lines in the notebooks. Your virtual environment already contains these packages since they are listed in `requirements.txt`.
66
+
67
+
## Troubleshooting
68
+
69
+
If you see an anndata error that mentions `allow_write_nullable_strings`, run the following code:
0 commit comments