ubuntu 13.04和g ++

时间:2013-08-29 15:31:56

标签: linux ubuntu g++

我最近安装了ubuntu 13.04,我是一个新的linux用户,但我无法编译g ++代码。

它说

The program 'g++' can be found in the following packages:
 * g++
 * pentium-builder
Try: sudo apt-get install <selected package>

当我尝试使用以下语句安装g++

sudo add-apt-repository ppa:ubuntu-toolchain-r/test

sudo apt-get update

sudo apt-get install g++-4.8

它说:

The following packages have unmet dependencies:
 g++-4.8 : Depends: gcc-4.8 (= 4.8.1-2ubuntu1~13.04) but it is not going to be installed
           Depends: libcloog-isl4 (>= 0.17) but it is not installable
           Depends: libisl10 (>= 0.10) but it is not installable
E: Unable to correct problems, you have held broken packages.

非常感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

对于Ubuntu,获取包括g++在内的所有构建工具的最简单方法是

sudo apt-get install build-essential

我建议您查看AskUbuntu以获取更多信息。

答案 1 :(得分:1)

您只是在命令行中尝试“sudo apt-get install g ++”? 因此包管理器将尝试安装缺少的包。不要求特定版本,你会没事的!它只是因为特定的版本要求而失败。