Skip to content

Commit 7d18a8a

Browse files
committed
DOC: More installation links
1 parent 077b747 commit 7d18a8a

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

docs/installation.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
:::{tab-item} System
66

77
```shell
8-
pip install "ngff-zarr[cli]"
8+
pip install ngff-zarr
99
```
1010

1111
:::
1212

13-
:::{tab-item} Browser In Pyodide, e.g. the
14-
[Pyodide REPL](https://pyodide.org/en/stable/console.html) or
15-
[JupyterLite](https://jupyterlite.readthedocs.io/en/latest/try/lab),
13+
:::{tab-item} Browser via Pyodide, e.g. the [Pyodide REPL] or [JupyterLite]
1614

1715
```python
1816
import micropip
@@ -23,14 +21,22 @@ await micropip.install('ngff-zarr')
2321

2422
::::
2523

26-
Optional dependencies include:
24+
Optional extras dependencies include:
2725

28-
`cli` : Additional IO libraries for the command line interface (CLI).
26+
`cli` : Additional IO libraries for
27+
[file conversion programmically or via the command line interface (CLI)](./cli.md).
2928

30-
`dask-image` : Multiscale generation with `dask-image` methods.
29+
`dask-image` : Support multiscale generation with [dask-image]
30+
[methods](./methods.md).
3131

32-
`itk` : Multiscale generation with `itk` methods.
32+
`itk` : Support multiscale generation with [itk] [methods](./methods.md).
3333

34-
`tensorstore` : Support writing with `tensorstore`.
34+
`tensorstore` : Support writing with [tensorstore].
3535

36-
`validate` : Support metadata validation when reading.
36+
`validate` : Support OME-Zarr data model metadata validation when reading.
37+
38+
[Pyodide REPL]: https://pyodide.org/en/stable/console.html
39+
[JupyterLite]: https://jupyterlite.readthedocs.io/en/latest/try/lab
40+
[dask-image]: https://image.dask.org/en/latest/
41+
[itk]: https://docs.itk.org/en/latest/learn/python_quick_start.html
42+
[tensorstore]: https://google.github.io/tensorstore/

docs/quick_start.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ import numpy as np
2020

2121
data = np.random.randint(0, 256, int(1e6)).reshape((1000, 1000))
2222
multiscales = nz.to_multiscales(data)
23+
2324
nz.to_ngff_zarr('example.ome.zarr', multiscales)
2425
```

0 commit comments

Comments
 (0)