当我尝试在 14.04 上安装 haskell 平台时,出现未满足的依赖关系

当我尝试在 14.04 上安装 haskell 平台时,出现未满足的依赖关系

我无法在 14.04 上安装 Haskell 平台

apt-get或者synaptic无法安装 haskell 平台。

错误信息如下:

The following packages have unmet dependencies:
haskell-platform :  depends on: libghc-gluraw-dev (>= 1.3.0.0) but it will not be installed
            depends on: libghc-gluraw-dev (< 1.3.0.0+) but it will not be installed
            depends on: libghc-glut-dev (>= 2.4.0.0) but it will not be installed
            depends on: libghc-glut-dev (< 2.4.0.0+) but it will not be installed
            depends on: libghc-opengl-dev (>= 2.8.0.0) but it will not be installed
            depends on: libghc-opengl-dev (< 2.8.0.0+) but it will not be installed

当我尝试安装第一个依赖项时,我遵循以下流程:

sudo apt-get install libgl-dev

Note: selecting <<libgl1-mesa-dev>> instead of <<libgl1-dev>>
the following packages have unmet dependencies:
libgl1-mesa-dev: depends on: libgl1-mesa-glx (= 10.1.0-4ubuntu5) but 10.1.3-0ubuntu0.1
     it will not be installed

那么,现在该怎么办?

答案1

这可能是因为与某些 PPA 存在冲突。

你可以尝试建议的这里

或者,使用

sudo aptitude install haskell-platform

aptitude可以提供更多建议来解决依赖关系。

答案2

我设法使用 aptitude 安装 haskell-platform 来解决依赖问题。

相关内容