操作系统:CentOS 7
Python:3.6.8
gcc: 4.8.5 (系统默认版本)
gcc-c++: 4.8.5 (系统默认版本)
安装prophet: pip install prophet
报错信息:error: command ‘gcc’ failed with exit status 1
从报错信息可以看出是gcc编译时出错了,需要升级gcc等系统库
使用root账号登录系统
yum install -y python-devel openssl-devel libffi-devel python3-devel
yum -y install centos-release-scl
yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-binutils
# 需要注意的是scl命令启用只是临时的,退出shell或重启就会恢复原系统gcc版本。
scl enable devtoolset-8 bash
# 如果要长期使用gcc 8的话,执行以下语句:
# echo "source /opt/rh/devtoolset-8/enable" >>/etc/profile
gcc -v
source .venv/bin/activate
# 离线安装,需要将安装包放到wheels目录下才能正常安装
# 1、查看pip版本
pip3 -V
# 2、如果版本号小于21.0.0,需要升级pip
pip install --upgrade pip
# 3、升级完后再次检查版本号
pip3 -V
# 安装命令
pip3 install prophet
# 查看prophet安装信息
pip3 show prophet