On import modin.pandas as modin_pd
line I get ModuleNotFoundError: No module named 'modin'
. I am using poetry & JupyterLab. If in the cell I type !poetry add modin
, I get ValueError
saying Package modin is already present
.
So it cannot install modin
because it is already installed but it cannot import it either. Any obvious solution that I am missing?
pip freeze
command also shows modin
to be installed. I also tried to install it via pip install
but absolutely nothing let me to import this module in the end.