Closed aayushL closed 11 months ago
same issue:
@iamxiaodong is there any update on this?
pip install numpy pip install pandas pip install convertdate pip install lunarcalendar pip install holidays==0.23 pip install tqdm pip install pystan==2.19.1.1 pip install fbprophet==0.7.1 pip install kats pip install Packaging==21.3
I met the same error. Kats is so difficult to install. and it seems the authors won't do any updates
这是来自QQ邮箱的假期自动回复邮件。 您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
if python version is 3.7 the solution solved, this is my docker build result:
this is example:
import numpy as np
import pandas as pd
from kats.consts import TimeSeriesData
from kats.detectors.cusum_detection import CUSUMDetector
# simulate time series with increase
np.random.seed(10)
df_increase = pd.DataFrame(
{
'time': pd.date_range('2019-01-01', '2019-03-01'),
'increase':np.concatenate([np.random.normal(1,0.2,30), np.random.normal(2,0.2,30)]),
}
)
# convert to TimeSeriesData object
timeseries = TimeSeriesData(df_increase)
# run detector and find change points
change_points = CUSUMDetector(timeseries).detector()
print("change_points:",change_points)
Hi everyone. I was running into this issue in Databricks. This is what worked for me:
torch==2.0.1
.这是来自QQ邮箱的假期自动回复邮件。 您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
You can refer to here
if python version is 3.7 the solution solved, this is my docker build result:
can you share your requirements.txt? Thanks in advance.
if python version is 3.7 the solution solved, this is my docker build result:
can you share your requirements.txt? Thanks in advance.
sorry, this is too long ago
closed with fdependency fixes
Hello, I am trying to install kats library using pip but I am getting below error: [end of output]
note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully. │ exit code: 1 ╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.