python_speech_features package installation failure

Question:

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

Asked By: Abhishek Dutt

||

Answers:

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
Answered By: merv

pip install python_speech_features Collecting python_speech_features Using cached python_speech_features-0.6.tar.gz (5.6 kB) ERROR: Error [WinError 225] Operation did not complete successfully because the file contains a virus or potentially unwanted software while executing command python setup.py egg_info Preparing metadata (setup.py) … error ERROR: Could not install packages due to an OSError: [WinError 225] Operation did not complete successfully because the file contains a virus or potentially unwanted software

Answered By: Radu
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.