Open asapsmc opened 2 years ago
I'm getting this error when I try to import from madmom:
Exception has occurred: ImportError cannot import name 'MutableSequence' from 'collections' (/Users/machine/miniforge3/envs/22env/lib/python3.10/collections/__init__.py) from madmom.audio.spectrogram import FilteredSpectrogramProcessor, LogarithmicSpectrogramProcessor, SpectrogramDifferenceProcessor
I'm running in a conda environment with the following versions: python 3.9.7 madmom 0.16.1 numpy 1.21.4
u need to add from collections.abc import MutableMapping, MutableSequence
This will be an issue for any Python version 3.10 or higher: https://stackoverflow.com/questions/70870041/cannot-import-name-mutablemapping-from-collections
I'm getting this error when I try to import from madmom:
I'm running in a conda environment with the following versions: python 3.9.7 madmom 0.16.1 numpy 1.21.4