apt-get을 사용하여 소프트웨어를 설치할 때 발생하는 문제

apt-get을 사용하여 소프트웨어를 설치할 때 발생하는 문제

Ubuntu 12.04 LTS를 실행 중이고 FSLView를 설치하고 싶습니다. Ubuntu 소프트웨어 센터를 통해 설치할 수 없으며 명령줄을 통해 패키지를 설치하려고 하면 sudo dpkg -i fslview_4.0.0~beta1-1~nd12.04+1_amd64.deb간단한 오류가 발생합니다.

처리하는 동안 오류가 발생했습니다: fslview

apt-get upgrade말해 주세요:

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.

"설치할 수 없습니다"은(는) 무슨 뜻인가요? 이렇게 하면 apt-get -f installFSLView가 삭제됩니다. 어떻게 해결할 수 있나요?

답변1

누락된 종속성을 수동으로 설치하고 FSLView를 다시 설치해 보세요. is not installable저장소에서 패키지를 사용할 수 없음을 의미합니다. neurodebian-popularity-contest처럼 사용해야 합니다 fslview.

다행히도 있는 것 같습니다.패키지 소스 코드여기에는 다음 줄도 포함되어 있으므로 다음 줄을 fslview편집 하고 추가하세요./etc/apt/sources.list

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

그런 다음 저장소 키를 설치해야 합니다.

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

fslview그런 다음 다음 명령을 사용하여 설치를 시도할 수 있습니다 apt-get.

sudo apt-get update
sudo apt-get install fslview

내가 아무것도 놓치지 않았다면 이것이 작동할 것입니다.

관련 정보