OpenFOAM231 および Paraview410 のインストール中に発生する問題

OpenFOAM231 および Paraview410 のインストール中に発生する問題

私はラップトップのパーティションにUbuntu 14.04 ltsをインストールし、いくつかのアプリをインストールした後、Webサイトに記載されている手順に従ってOpenFOAMのインストールを実行しようとしています。出典: Openfoam ステップ 3 まではすべて正常に動作しているように見えますが、入力するとsudo apt-get install paraviewopenfoam410次のメッセージが表示されます。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libcheese-gtk23 : Depends: libclutter-gtk-1.0-0 (>= 0.91.8) but it is not going to be installed
                   Depends: libcogl15 (>= 1.15.8) but it is not going to be installed
 libcheese7 : Depends: libclutter-gst-2.0-0 (>= 0.10.0) but it is not going to be installed
              Depends: gstreamer1.0-clutter but it is not going to be installed
 libclutter-1.0-0 : Depends: libcogl-pango15 (>= 1.15.8) but it is not going to be installed
                    Depends: libcogl15 (>= 1.15.8) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

ここで説明されているすべてを試しました -PPA を追加した後、満たされていない依存関係を解決するにはどうすればよいですか?- しかし、私はその問題を解決できませんでした。

答え1

Ubuntu 14.04.2 lts に OpenFOAM2.3.1 をインストールするときに同じ問題が発生します。満たされていない依存関係をすべて手動で更新する必要があります。

このリンクを試してくださいUbuntu 14.04 LTS に qt4 をインストールする

ターミナルで(ルートユーザーとして)次のコマンドを入力します:apt-get install libglew-dev libcheese7 libcheese-gtk23 libclutter-gst-2.0-0 libcogl15 libclutter-gtk-1.0-0 libclutter-1.0-0

これにより、満たされていない依存関係がすべて更新され、OpenFOAM に必要なすべてのパッケージをインストールできるようになります。

幸運を!

関連情報