When installing necessary packages to build NOMELT with:
mamba env create -f environment.yml --name nomelt
pip install -e .
resulted in:
NotImplementedError: Loading a dataset cached in a LocalFileSystem is not supported when trying to create a library of variants (step 1 and 3 enabled in ./app/config.yaml) . This was quickly solved by running:
pip install -U datasets
I believe specifying a version number in the environment.yml would fix this?
When installing necessary packages to build NOMELT with:
mamba env create -f environment.yml --name nomeltpip install -e .resulted in:
NotImplementedError: Loading a dataset cached in a LocalFileSystem is not supportedwhen trying to create a library of variants (step 1 and 3 enabled in./app/config.yaml) . This was quickly solved by running:pip install -U datasetsI believe specifying a version number in the
environment.ymlwould fix this?