I have not been able to install dmpfold, apparently due to dependencies on torch and numpy versions that are so old that pip won't install them (at least not as far as I can see). I've tried using various combinations of older versions without success. Typical attempt:
pip install torch==1.8 # fails, oldest supported version is 1.11.0
pip install torch==1.11
pip install numpy # no change, numpy 2.1.2 installed as dependency of torch
pip install dmpfold # "Successfully installed dmpfold-2.0"
dmpfold -i test.aln
"/usr/local/lib/python3.10/dist-packages/torch/_masked/__init__.py:223: UserWarning: Failed to initialize NumPy: _ARRAY_API not found (Triggered internally at ../torch/csrc/utils/tensor_numpy.cpp:68.)"
"RuntimeError: Numpy is not available"
I have not been able to install dmpfold, apparently due to dependencies on torch and numpy versions that are so old that pip won't install them (at least not as far as I can see). I've tried using various combinations of older versions without success. Typical attempt: