每天一点点,记录工作中实操可行
Mac 版 fbprophet 安装
fbprophet 是facebook开源的时间序列预测包,因其优良的性能,得到大家的追捧,但安装过程实在太多坑
安装(本人mac)
终端敲入
conda install pystan
#将安装很多依赖,不要用pip安装,一定用conda装
安装如下:
点y,继续等待安装
然后执行
pip install fbprophet
啊哦~失败了
import fbprophet 后会提示:ERROR:fbprophet:Importing plotly failed. Interactive plots will not work.
百度到的解决方法,执行以下:
conda install plotly -y
ok,再执行 ,完美安装成功 啦~~~
import fbprophet