python_speech_features 包安装失败

python_speech_features package installation failure

我正在开发 .py 模块,这需要我使用 python_speech_features 包。我在 Anaconda Prompt 中写了以下命令:

conda install -c contango python_speech_features

但我收到以下错误:

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.

PackagesNotFoundError: The following packages are not available from current channels:

- python_speech_features

我的系统配置:

Python: 3.8.8
Conda: 4.10.1

因为它是纯粹的 Python 并且没有人积极维护 Conda 构建,请随时从 PyPI 安装:

## activate environment
conda activate foo

## install dependencies
conda install pip numpy scipy

## install with pip
pip install python_speech_features