conda install -c conda-forge librosaBut when I try running the gallery examples, I get the error:
>>> from presets import Presets
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
So obviously 'presets' is missing from my install. I double checked that I can import
import librosa as _librosa
import librosa.display as _display
And they both seem to import fine.
Can somebody point me in the direction of getting the 'presets' class.
My first guess didn't work and I don't see it on the GitHub for librosa, but perhaps I missed it.
conda install -c conda-forge presets
Fetching package metadata ...........
PackageNotFoundError: Packages missing in current channels:
- presets
We have searched for the packages in the following channels:
- https://conda.anaconda.org/conda-forge/osx-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.continuum.io/pkgs/free/osx-64
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/osx-64
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/osx-64
- https://repo.continuum.io/pkgs/pro/noarchThank you in advance for you help.