-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Hi,
Trying to install FISH-quant from this link:
https://imjoy.io/#/app?w=fq-main&plugin=fish-quant/fq-imjoy:FISH-QUANT@stable&upgrade=1
I get the following error:
Logs
ModuleNotFoundError Traceback (most recent call last)Cell In[3], line 18
16 from skimage.exposure import rescale_intensity
17 import bigfish # Is there a way to get the version without import?
---> 18 from bigfish import stack, plot, detection, segmentation, multistack
20 # TEMPORARY BUG FIX
21 # 1. fix_1: flipped orientation of images in kaibu:
22 # * 'np.flipud': correct orientation of image in Kaibu.
23 # * Flip y coordinates
24
25 # For MAC
26 if sys.platform == "darwin":
File ~.conda\envs\fq-imjoy\lib\site-packages\bigfish\segmentation_init_.py:17
14 from .cell_segmentation import get_watershed_relief
15 from .cell_segmentation import apply_watershed
---> 17 from .nuc_segmentation import unet_3_classes_nuc
18 from .nuc_segmentation import apply_unet_3_classes
19 from .nuc_segmentation import from_3_classes_to_instances
File ~.conda\envs\fq-imjoy\lib\site-packages\bigfish\segmentation\nuc_segmentation.py:16
13 from .postprocess import label_instances
14 from .postprocess import clean_segmentation
---> 16 from skimage.morphology.selem import disk
17 from skimage.morphology import reconstruction
20 # ### Unet model ###
ModuleNotFoundError: No module named 'skimage.morphology.selem'
Versions:
- OS: Windows 10
- Python 3.10 installed with miniconda as described here
- Browser: Chrome version 111.0.5563.147
Did I do anything wrong?
Thanks!