xuanhan
xuanhan

Reputation: 11

ERROR: Could not build wheels for sktime, which is required to install pyproject.toml-based projects

Encountering this problem when using -

$pip install sktime==0.4.1 

More information -

note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for sktime Running setup.py clean for sktime Failed to build sktime ERROR: Could not build wheels for sktime, which is required to install pyproject.toml-based projects

I tried -

$python -m pip install sktime==0.4.1
$--no-binary :all:pip install sktime==0.4.1 --no-binary :all:

But they didn't worked.

Upvotes: 1

Views: 383

Answers (1)

aayush shukla
aayush shukla

Reputation: 1

Try

pip install --upgrade statsmodels

Upvotes: 0

Related Questions