Hi. I used conda to create an environment with python 3.13.2 and all the other listed pre-requisites except PyAudio, because I had to use pip to get a recent-enough version of PyAudio, ending up with PyAudio 0.2.14. Then I used pip to install madmom, ending up with madmom 0.16.1.
When I try to import madmom in jupyterlab (3.3.2), I get this error:
ImportError: cannot import name 'MutableSequence' from 'collections' (C:\Users\ray_w\trnscrpt_proj\trnscrpt_env\Lib\collections\__init__.py)
Getting help from a friend, I was told that " the MutableSequences class was moved from collections to collections.abc in Python 3.10" He suggested that make an environment with Python 3.9 and numpy 1.19.
Is the problem that I'm encountering a "bug", or a failure on my part?
Thanks!
Ray