Anaconda 安装fbprophet
截至发文,fbprophet支持python版本到3.8,环境配置好后尽量不要在下载其他包了。
安装问题
1.holidays错误
TypeError: This is a python-holidays entity loader class. For entity inheritance purposes please import a class you want to derive from directly: e.g., `from holidays.countries import Entity` or `from holidays.financial import Entity`.
使用pip安装
pip install holidays==0.17.2
2.plotly错误
安装plotly
pip install plotly
3.numpy错误
原因是numpy版本太新,numpy1.24起删除了numpy.bool、numpy.int、numpy.float、numpy.complex、numpy.object、numpy.str、numpy.long、numpy.unicode类型的支持。所以卸载numpy后安装1.23.5版本的numpy
pip install numpy==1.23.5
又提示需要 typing-extensions<4,>=3.7.4.3
pip install typing-extensions==3.7.4.3
4.pandas错误
AttributeError: 'DataFrame' object has no attribute 'append'
pip install pandas==1.5.3
5.关于在jupyter notebook下使用plotly包write_image函数程序阻塞的解决办法
pio.write_image(fig,file="../fig/Fig.eps",format='eps')
- 可以使用conda install plotly-orca,使用orca
pio.write_image(fig,image_path_all,format='svg',engine='orca')
- 可以将kaleido0.2.1降级为 v0.1.0.post1版本,默认使用kaleido,不需要指定
pio.write_image(fig,image_path_all,format='svg')
kaleido链接
Releases · plotly/Kaleido · GitHub