I have tried installing the package with pip, following the docs. Despite the package being successfully installed according to pip, when I run wsic from the terminal I get a missing dependency error. This shouldn't normally happen because I expect dependency to be installed with the pip command unless otherwise mentioned in the docs.
$ wsic
Traceback (most recent call last):
File "/home/USER/miniconda3/bin/wsic", line 5, in <module>
from wsic.cli import main
File "/home/USER/miniconda3/lib/python3.9/site-packages/wsic/__init__.py", line 7, in <module>
from . import codecs, magic, metadata, multiproc, readers, typedefs, writers
File "/home/USER/miniconda3/lib/python3.9/site-packages/wsic/readers.py", line 9, in <module>
import xarray as xr
ModuleNotFoundError: No module named 'xarray'
Update 1
When trying to manually install xarray after getting the above error message, I get a similar dependency error concerning dask:
$ wsic
Traceback (most recent call last):
File "/home/u2271662/miniconda3/envs/wsic/bin/wsic", line 5, in <module>
from wsic.cli import main
File "/home/USER/miniconda3/envs/wsic/lib/python3.9/site-packages/wsic/__init__.py", line 7, in <module>
from . import codecs, magic, metadata, multiproc, readers, typedefs, writers
File "/home/USER/miniconda3/envs/wsic/lib/python3.9/site-packages/wsic/writers.py", line 34, in <module>
from wsic.tile_iterators import DaskTileIterator
File "/home/USER/miniconda3/envs/wsic/lib/python3.9/site-packages/wsic/tile_iterators.py", line 11, in <module>
import dask.distributed as daskd
ModuleNotFoundError: No module named 'dask'
****
Update 2
Installing from source did not fix the problem, too.
Description
I have tried installing the package with pip, following the docs. Despite the package being successfully installed according to pip, when I run wsic from the terminal I get a missing dependency error. This shouldn't normally happen because I expect dependency to be installed with the pip command unless otherwise mentioned in the docs.
What I Did
Installing with pip:
Trying wsic
Update 1
When trying to manually install
xarray
after getting the above error message, I get a similar dependency error concerningdask
:Update 2
Installing from source did not fix the problem, too.