Python中安装Prophet

1. 先安装pystan依赖

按照https://pystan.readthedocs.io/en/latest/windows.html说明,请使用如下命令

conda install libpython m2w64-toolchain -c msys2
conda install matplotlib scipy pandas -c conda-forge
pip install pystan
 
安装好后使用如下python代码测试一下是否好用,如果结果不是接近0或有报错,可能是pystan安装失败导致。
Test if pystan install successful:
import pystan
model_code = 'parameters {real y;} model {y ~ normal(0,1);}'
model = pystan.StanModel(model_code=model_code)  # this will take a minute
y = model.sampling(n_jobs=1).extract()['y']
y.mean()  # should be close to 0
 
2.安装Prophet
pip install fbprophet         
                                                
如果使用conda可以用下面命令选择conda-forge源,我试了不成功。
conda install -c conda-forge fbprophet 
conda install -c conda-forge/label/cf201901 fbprophet

转载于:https://www.cnblogs.com/zenghanxi/p/10477543.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值