Currently building the container returns an error during compilation of RMextract:
ModuleNotFoundError: No module named 'distutils.msvccompiler'
It happened after release of setuptools v74.0.0 where they removed some depreciated functions of distutils. Probably it doesn't work well with 1.26.2 version of numpy required in the script.
forcing
pip install "setuptools=73.0.1"
fixes the problem
Currently building the container returns an error during compilation of RMextract:
ModuleNotFoundError: No module named 'distutils.msvccompiler'
It happened after release of setuptools v74.0.0 where they removed some depreciated functions of distutils. Probably it doesn't work well with 1.26.2 version of numpy required in the script.
forcing
pip install "setuptools=73.0.1"
fixes the problem