我试图在ubuntu 14.04服务器上安装一些软件包,我遇到了问题。
当我尝试运行时
apt-get install build-essential
我收到一条错误消息,告诉我无法达到依赖关系。
build-essential : Dépend: libc6-dev mais ne sera pas installé ou
libc-dev
Dépend: gcc (>= 4:4.4.3) mais ne sera pas installé
Dépend: g++ (>= 4:4.4.3) mais ne sera pas installé
Dépend: make
Dépend: dpkg-dev (>= 1.13.5) mais ne sera pas installé
Does anybody knows how to make me able to run it ?
编辑:我以root身份运行
答案 0 :(得分:1)
首先,修复依赖项的任何问题:
aptitude update; aptitude install -f
aptitude
更适合解决依赖关系。也许您需要删除build-essential,安装aptitude并修复依赖性问题。然后安装所需的包(build-essential
)。
答案 1 :(得分:-1)
apt-get install build-essential
正确的命令是# apt-get update && apt-get install build-essential
或者您可以使用# apt-get update && apt-get install g++ autoconf