1.首先得安装pystan
安装pystan之前的先安装 MinGW-w64(因为如果不安装大概率会报错),安装方法:https://blog.csdn.net/jjxcsdn/article/details/123058745
然后安装pystan,可以执行命令
pip install pystan
也可以去pypi官网去下载whl文件安装,版本为2.19.1.1
2.安装好pystan后,安装fbprophet
执行 pip install fbprophet,大概率会报错,
如果报错执行:
conda install libpython m2w64-toolchain -c msys2
详细可查看:https://blog.csdn.net/CVGao/article/details/120574360
执行完后再去安装fbprophet ,命令为:
pip install fbprophet
我已经在多台电脑测试过,可以一试