I have
Hey folks, I hope someone can help me pls, the app works fine on my local virtual environment, but once I try to deploy it on streamlit I get a consisting error from pystan.
I have tryed with several python version (3.7,3.8,3.9) with several version of pystan, and same for fbprophet.
Do someone could have an idea ? I would appreciate it very much.
Thank you !
My repo is here if usefull: GitHub - AxelCrypto/Final
- The
fbprophet
package is outdated, use the newer prophet
package.
- You have to make some slight changes in your
import
statements too.
- Cleanup your
requirements.txt
file, you don’t need most of the stuff.
Btw, here is a demo example project with streamlit and the latest prophet
package:
Thank you very mych @Franky1 , by cleaning the requirements.txt and changing “import fbprophet” by just “import propher” I could deploy the app.
Thank you again 
1 Like