Skip to content

Commit b8ceeb4

Browse files
committed
Updated requirements
1 parent 01cfc3a commit b8ceeb4

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,22 @@ Install the following packages in the newly created environment.
2424
```
2525
conda activate scale-up
2626
27-
conda install -c conda-forge "cellpose>=3.0,<4.0" tifffile=2025.6.11 "zarr>=2.0,<3.0" dask=2025.5.1 imagecodecs=2025.3.30
27+
conda install -c conda-forge "cellpose>=3.0,<4.0" tifffile=2025.6.11 "zarr>=2.0,<3.0" dask=2025.5.1 distributed=2025.5.1 dask-image=2024.5.3 imagecodecs=2025.3.30
2828
```
2929

30-
We might need to open some image files that are compressed using `JPEG2000`, to do that we'll use `imagecodecs` to have access to this compression algorithm.
30+
We'll open some image files that are compressed using `JPEG2000`, so we need `imagecodecs` to have access to this compression algorithm.
3131

32-
Additionally, install Jupyterlab to follow the notebooks.
32+
Additionally, install Jupyterlab to follow the notebooks, and its Dask extension.
3333

3434
```
35-
conda activate scale-up
36-
37-
conda install -c conda-forge jupyterlab=4.4.3
35+
conda install -c conda-forge jupyterlab=4.4.3 dask-labextension=7.0.0
3836
```
3937

4038
## A test image
4139

4240
We'll work with big microscopy images. An example of that kind of image can be found [here](https://openslide.cs.cmu.edu/download/openslide-testdata/Aperio/CMU-1.svs).
4341
So it is a good idea to have it downloaded as well.
42+
43+
A crop of that image can be found [here](https://drive.google.com/file/d/17owNcq_Or6aBAyUVE33fyHSS0VvKuHSw/view?usp=sharing), along with its `Zarr` version [here](https://drive.google.com/file/d/1BmNxOrO3vOFPR-PCnV00DYgFsD1sDu47/view?usp=sharing).
44+
45+
A smaller example image can be found [here](https://openslide.cs.cmu.edu/download/openslide-testdata/Aperio/CMU-1-Small-Region.svs), and its corresponding `Zarr` version is [here](https://drive.google.com/file/d/1MifgafB5mhVAvqjzEAAR_zQajAU5Dcya/view?usp=drive_link).

requirements.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SciPy 2025 - Tutorial: Scaling-up deep learning inference to large-scale bioimage data
2+
Tutorial about scaling-up image analysis with Dask presented during SciPy 2025 Conference (July 7-13, 2025)
3+
14
# Installation instructions
25

36
This workshop uses Dask, Zarr, TiffFile, and Cellpose libraries.
@@ -21,16 +24,22 @@ Install the following packages in the newly created environment.
2124
```
2225
conda activate scale-up
2326
24-
conda install -c conda-forge "cellpose>=3.0,<4.0" "tifffile[all]<=2025.5.21" "zarr>=2.0,<3.0" dask=2025.5.1 distributed=2025.5.1 jupyterlab=4.4.3 bioformats2raw=0.9.4
27+
conda install -c conda-forge "cellpose>=3.0,<4.0" tifffile=2025.6.11 "zarr>=2.0,<3.0" dask=2025.5.1 distributed=2025.5.1 dask-image=2024.5.3 imagecodecs=2025.3.30
2528
```
2629

27-
We'll convert an image from Tiff format to the Zarr format, so make sure to install `bioformats2raw` as follows inside the same `scale-up` environment:
30+
We'll open some image files that are compressed using `JPEG2000`, so we need `imagecodecs` to have access to this compression algorithm.
31+
32+
Additionally, install Jupyterlab to follow the notebooks, and its Dask extension.
2833

2934
```
30-
conda install -c ome bioformats2raw=0.9.4
35+
conda install -c conda-forge jupyterlab=4.4.3 dask-labextension=7.0.0
3136
```
3237

3338
## A test image
3439

3540
We'll work with big microscopy images. An example of that kind of image can be found [here](https://openslide.cs.cmu.edu/download/openslide-testdata/Aperio/CMU-1.svs).
3641
So it is a good idea to have it downloaded as well.
42+
43+
A crop of that image can be found [here](https://drive.google.com/file/d/17owNcq_Or6aBAyUVE33fyHSS0VvKuHSw/view?usp=sharing), along with its `Zarr` version [here](https://drive.google.com/file/d/1BmNxOrO3vOFPR-PCnV00DYgFsD1sDu47/view?usp=sharing).
44+
45+
A smaller example image can be found [here](https://openslide.cs.cmu.edu/download/openslide-testdata/Aperio/CMU-1-Small-Region.svs), and its corresponding `Zarr` version is [here](https://drive.google.com/file/d/1MifgafB5mhVAvqjzEAAR_zQajAU5Dcya/view?usp=drive_link).

0 commit comments

Comments
 (0)