命令' gcc'安装HUE时失败

时间:2015-05-18 18:47:39

标签: gcc ubuntu-14.04 hue

我正在尝试在ubuntu 14上安装HUE,我收到以下错误:

creating build/temp.linux-x86_64-2.7/src
gcc -pthread -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/ -I/home/huser/miniconda/include/python2.7 -c src/_fastmath.c -o build/temp.linux-x86_64-2.7/src/_fastmath.o
src/_fastmath.c:36:18: fatal error: gmp.h: No such file or directory
 # include <gmp.h>
                  ^
compilation terminated.
error: command 'gcc' failed with exit status 1
make[2]: *** [/home/huser/hue/desktop/core/build/pycrypto-2.6.1/egg.stamp] Error 1
make[2]: Leaving directory `/home/huser/hue/desktop/core'
make[1]: *** [.recursive-env-install/core] Error 2
make[1]: Leaving directory `/home/huser/hue/desktop'
make: *** [desktop] Error 2

我已经使用

安装了gcc
sudo apt-get install gcc

我按照link的说明进行操作。我已经安装了here列出的所有软件包。请帮忙!

1 个答案:

答案 0 :(得分:4)

此错误表明gcc未找到&#34; gmp.h&#34;,而不是gcc丢失。 您需要确保已安装&#34; libgmp3-dev&#34;包并在路径中有gmp.h。

它是Where to find "gmp.h"?的副本,但我似乎无法这样标记。