Anaconda下 Prophet的安装,pystan和fbprophet的版本问题

一、安装pystan

conda install pystan==2.19.1.1

二、安装fbprophet

conda install fbprophet==0.7.1 -c conda-forge

Prophet有prophet和fbprophet两个包可以安装,我这里用的是fbprophet

三  import fbprophet 后会提示:

ERROR:fbprophet:Importing plotly failed. Interactive plots will not work.
问题说明:没有安装plotly模块;
解决方法:直接在anaconda promopt安装即可:
conda install plotly -y 

 

你可能感兴趣的:(python,linux,开发语言)