ModuleNotFoundError on Windows 11

I was running worldcereal_private_extractions.ipynb where I encountered the following error - ModuleNotFoundError: No module named ‘grp’

I understand that grp works only on Unix based systems. Is there a workaround for the same to run it on Windows.

For running on Windows, how are you installing the module? From source using the Github main branch? We investigated your issue, and the usage of grp is only required for the massive patch extractions we are doing for training global models, while the user-specific extractions do not need this. We’ve therefore removed this global import which should fix your issue. If you are installing the module from source, simply re-installing it from the current main branch should give you that fix.

I was running the following command after cloning the repository into my local device - conda env create -f environment.yml

Additionally, I also tried pip installing the module but it was unavailable. Removing it from global import should resolve the issue.

You can just point pip to the repository:
pip install git+https://github.com/WorldCereal/worldcereal-classification.git
which should install the current main branch.