工作需要用到Facebook的fbprophet算法,需要安装对应的工具包,网上翻看了各路大神的帖子,但踩了无数坑之后,终于安装成功,这里总结一下安装过程,服务器操作系统为CentOS Linux release 7.8.2003 (Core)
1 安装dnf工具、gcc和gcc-c++
yum install dnf
dnf install gcc
dnf install gcc-c++
2 新建一个conda环境,python版本为3.7
(base) [root@localhost ~]# conda create -n times python=3.7
3 安装python3-devel
yum install python-devel
yum install python3-devel
4 安装cython、pystan、fbprophet
pip3 install cython
安装pystan
python3 -m pip install --default-timeout=1000 pystan==2.17.1.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
其中安装pystan的过程将变得非常漫长,特别是终端出现下面的信息时,需要耐心等待
如果最后出现以下结果,则表示虽然前面有报错,但最后还是安装成功
安装fbprophet
python3 -m pip install --default-timeout=1000 fbprophet -i https://pypi.tuna.tsinghua.edu.cn/simple
如果最后出现以下结果,则表示虽然前面有报错,但最后还是安装成功
5 测试安装结果
pip list
在终端输入python,然后输from fbprophet import Prophet
看看能否导入相关的模块,如果出现一下信息,则安装对应的工具包
(times) [root@localhost ~]# python
Python 3.7.12 | packaged by conda-forge | (default, Oct 26 2021, 06:08:21)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from fbprophet import Prophet
Importing plotly failed. Interactive plots will not work.
>>>
这里提示缺plotly,那就安装
pip install plotly
继续测试能否导入相关模块
(times) [root@localhost ~]# python
Python 3.7.12 | packaged by conda-forge | (default, Oct 26 2021, 06:08:21)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from fbprophet import Prophet
>>>
至此,安装工作完成。