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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No module named 'fbprophet'

josesugahara opened this issue · comments

Hello!

I was trying to import the auto_ts library, but even after trying to install the libraries I still get the erro:

ModuleNotFoundError: No module named 'fbprophet'

when I run the command:

from auto_ts import auto_timeseries

Has anyone ever found something similar?

Hi @josesugahara
Thanks 👍 for trying out Auto_TS.

You are getting the error since we use a library named FB Prophet (Google it!) to run Auto_TS. Can you please post a screenshot of the error or show me where it is erroring?

Thanks
Auto Vimal

Hello @AutoViML

the library fbprophet was changed for prophet. If you don't have it downloaded in your pc, you will not be able to get that package via pip/conda:

image

Yes I have removed fbprophet from the the requirements.txt and setup.py files. So you don't need it anymore for auto-ts.

Can you please see if it works with the new prophet?
Thanks
Auto Vimal

Hello @AutoViML

I uninstalled the package and installed it again.

I used: pip install auto_ts
All fine.

but when I use the following line of code:
from auto_ts import auto_timeseries

image

Hi @josesugahara
Auto_TS has now been upgraded to the new Prophet. You can test the new version by upgrading 👍

pip install auto_ts --user --upgrade

You must also ensure you have the new Prophet installed.
Please test it and let me know.
Thanks
Auto Vimal

I am still getting the same erro even after installing pip install auto_ts --user --upgrade

image

I think you have multiple versions of python or something that prevents your Jupyter Notebook from pulling in the right version of auto_ts from Python site_packages folder. I suggest you try some other machine or try colab instead.

I am closing this comment for now.
Auto Vimal