在Ubuntu中安装graph-tool时配置错误(需要c ++ 14)

时间:2017-08-04 15:58:39

标签: python ubuntu gcc

我是Ubuntu的新手。我下载了一个python模块graph-tool-2.22。我在graph-tool-2.22目录

中命令后
./configure

,它会导致配置错误。

$ ./configure
....blah
....blah
checking whether g++ supports C++14 features by default... no
checking whether g++ supports C++14 features with -std=gnu++14... no
checking whether g++ supports C++14 features with -std=gnu++1y... no
configure: error: *** A compiler with support for C++14 language features is required.

它说c ++ 14是必需的,但是,当然我的计算机中有g ++(Ubuntu 4.8.4-2ubuntu1~14.04.3)4.8.4。有什么问题?

1 个答案:

答案 0 :(得分:2)

您的gcc版本似乎不支持graph-tool-2.22需要的C ++ 14。

正如<{3>} C ++ 14语言功能部分所述,对{C + +}的全面支持位于gcc 5,并且还提供了大量合适的功能gcc 4.9

您可能希望升级到gcc 5,也许升级到Ubuntu 16.04。 Ubuntu 14.04已经老了