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

私が何も見逃さなかった場合、これはうまくいくでしょう。

おすすめ記事