You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
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
The text was updated successfully, but these errors were encountered: