Problemas ao instalar o software com o apt-get

2

Estou executando o Ubuntu 12.04 LTS e gostaria de instalar o FSLView. Não consigo instalá-lo através do Ubuntu Software Center, e quando tento instalar o pacote pela linha de comando com sudo dpkg -i fslview_4.0.0~beta1-1~nd12.04+1_amd64.deb , recebo um erro simples:

Errors were encountered while processing: fslview

apt-get upgrade me diz:

09:58:29 Downloads > sudo apt-get upgrade Reading package lists... Done Building dependency tree        Reading state information... Done You might want to run 'apt-get -f install' to correct these. The following packages have unmet dependencies:  fslview : Depends: neurodebian-popularity-contest but it is not installable
           Depends: libqt4-qt3support (>= 4:4.5.3) but it is not installed
           Depends: libqtassistantclient4 (>= 4.6.3) but it is not installed
           Depends: libqwt5-qt4 but it is not installed
           Depends: libvtk5.8-qt4 but it is not installed
           Recommends: fslview-doc but it is not installable
           Recommends: qt-assistant-compat but it is not installed
           E: Unmet dependencies. Try using -f.

O que significa "não é instalável"? Se eu fizer apt-get -f install , o FSLView só será removido. Como faço para corrigir isso?

    
por Vincent 22.02.2013 / 16:34

1 resposta

1

Instale as dependências ausentes manualmente e tente instalar o FSLView novamente. is not installable significa que o pacote não está disponível nos repositórios. Você precisa obter e instalar o pacote neurodebian-popularity-contest manualmente, como fez com fslview .

Por sorte, parece haver uma fonte de pacotes para ela que contém fslview . Edite seu /etc/apt/sources.list e adicione essa linha:

deb http://neuro.debian.net/debian/ precise contrib main non-free

Depois disso, você terá que instalar a chave dos repositórios:

sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com A5D32F012649A5A9

Depois disso, você pode tentar instalar o fslview usando apt-get :

sudo apt-get update
sudo apt-get install fslview

Se eu não perdi nada, isso deve funcionar.

    
por 23.02.2013 / 00:54

Tags