Abhishek Dutt
Abhishek Dutt

Reputation: 1437

python_speech_features package installation failure

I am working on a .py module, which requires me to use the python_speech_features package. I wrote the following command in the Anaconda Prompt:

conda install -c contango python_speech_features

But I am getting the following error:

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

My system config:

Python: 3.8.8
Conda: 4.10.1

Upvotes: 1

Views: 2447

Answers (1)

merv
merv

Reputation: 77100

Since it is pure Python and no one is actively maintaining a Conda build, feel free to install from PyPI:

## activate environment
conda activate foo

## install dependencies
conda install pip numpy scipy

## install with pip
pip install python_speech_features

Upvotes: 2

Related Questions