AutoViML / Auto_TS

Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Created by Ram Seshadri. Collaborators welcome.
Apache License 2.0
723 stars 113 forks source link

error import auto_timeseries in colab #75

Closed antlig closed 2 years ago

antlig commented 2 years ago

error

AutoViML commented 2 years ago

Hi @antlig 👍 Thanks for bringing this to my attention. I have now updated requirements.txt and setup.py.

You should do the following in colab in the same order:

!pip install auto-ts
!pip install pyyaml==5.4.1
!pip install dask distributed --upgrade

Then restart the runtime and import auto_timeseries as follows:

from auto_ts import auto_timeseries

That should work. Please confirm. AutoViML

antlig commented 2 years ago

OK it works Thanks so much