可以在M1 Mac上安装Librosa吗?我尝试了conda install -c conda-forge librosa
(miniforge)的pip和Conda,但是得到了这个错误:
# conda install -c conda-forge librosa
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: /
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versions
发布于 2021-04-19 20:53:30
是的,它正在工作(以某种方式)。在miniforge中使用变通方法,其工作原理如下:
brew install miniforge
创建并激活新的env:
conda create -n .venv python
conda activate .venv
现在,安装scikit-lean和所需的librosa:
conda install scikit-learn librosa
干杯!
https://stackoverflow.com/questions/66310721
复制相似问题