Today when installing, it worked but then when calling scripts, it said:
==> ModuleNotFoundError: No module named 'scripts_python'
But when installing I had the message:
DEPRECATION: Legacy editable install of dwi_ml==1.0 from file:dwi_ml (setup.py develop) is deprecated. pip 25.3 will enforce this behaviour change. A possible replacement is to add a pyproject.toml or enable --use-pep517, and use setuptools >= 64. If the resulting installation is not behaving as expected, try using --config-settings editable_mode=compat. Please consult the setuptools documentation for more information. Discussion can be found at pypa/pip#11457
So I tried pip install -e . --config-settings editable_mode=compat and now things work. But we need to upgrade!
Today when installing, it worked but then when calling scripts, it said:
==> ModuleNotFoundError: No module named 'scripts_python'
But when installing I had the message:
DEPRECATION: Legacy editable install of dwi_ml==1.0 from file:dwi_ml (setup.py develop) is deprecated. pip 25.3 will enforce this behaviour change. A possible replacement is to add a pyproject.toml or enable --use-pep517, and use setuptools >= 64. If the resulting installation is not behaving as expected, try using --config-settings editable_mode=compat. Please consult the setuptools documentation for more information. Discussion can be found at pypa/pip#11457
So I tried
pip install -e . --config-settings editable_mode=compatand now things work. But we need to upgrade!