【发布时间】:2015-06-13 11:53:56
【问题描述】:
尝试在 AWS Elastic Beanstalk EC2 实例上安装我的 requirements.txt 文件中的 Pandas (0.16.0) 时出现以下错误:
building 'pandas.msgpack' extension
gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LITTLE_ENDIAN__=1 -Ipandas/src/klib -Ipandas/src -I/opt/python/run/venv/local/lib/python2.7/site-packages/numpy/core/include -I/usr/include/python2.7 -c pandas/msgpack.cpp -o build/temp.linux-x86_64-2.7/pandas/msgpack.o
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
error: command 'gcc' failed with exit status 1
我在 64bit Amazon Linux 2015.03 v1.3.0 running Python 2.7 上运行,之前在 t1.micro 实例上遇到了同样的错误,当我更改为 m3.medium 时解决了这个错误,但我正在运行 m3.xlarge,所以不能是内存问题。
我还确保 gcc 作为包安装在.ebextensions/00_gcc.config:
packages:
yum:
gcc: []
gcc-c++: []
【问题讨论】:
-
这个问题好几天了。重建环境,然后激活 X 射线和增强的健康/日志记录解决了这个问题。虽然我不知道为什么会有联系。
标签: python amazon-web-services pandas amazon-ec2 amazon-elastic-beanstalk