Friday, September 4, 2020

Installing fbprophet

fbprophet is one of my favourite tools for forecasting. Now the problem is in the first step to install fbprophet. Sometimes it can be done via just "pip install fbprophet" in Anaconda prompt. It gives you problem as it might show many errors for dependent packages not being installed. In your Jupyter notebook it will still show "Module not found" etc.

I looked into the issue for long. I found multiple solutions to the problem on various portals but the one which will definitely gives you results is the below one:

First you can try with the below command on Anaconda Prompt. 


conda install -c conda-forge fbprophet


This might not work always but the below command will surely give you the results:

On Anaconda Prompt give the below commands

1. On Prompt install Ephem:   conda install -c anaconda ephem

2. Install Pystan:  conda install -c conda-forge pystan

3. Finally install Fbprophet:  conda install -c conda-forge fbprophet


This might take sometime for conda to download and install different packages but it will surely give you results.



Regards,

No comments:

Post a Comment