Quando eu tento instalar a plataforma haskell em 14.04, fico com dependências não atendidas

2

Não consegui instalar a plataforma Haskell em 14.04

apt-get ou synaptic não pôde instalar a haskell-platform.

Mensagem de erro abaixo:

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

Quando tento instalar a primeira dependência, sigo um processo que termina com:

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

Então, o que fazer agora?

    
por VHMG 24.11.2014 / 17:32

2 respostas

1

Isso pode ser devido a alguns conflitos com alguns PPAs.

Você poderia tentar o que é sugerido aqui .

ou, alternativamente, use

sudo aptitude install haskell-platform

aptitude pode oferecer mais algumas sugestões para resolver dependências.

    
por strollindark 10.02.2015 / 01:46
0

Consigo instalar a haskell-platform usando o aptitude para resolver o problema de dependência.

    
por VHMG 07.06.2015 / 02:36