
방금 노트북의 파티션에 Ubuntu 14.04 lts를 설치했고 몇 가지 앱만 설치한 후 웹 사이트에 제공된 지침에 따라 OpenFOAM 설치를 실행하려고 합니다.http://www.openfoam.org/download/ubuntu.php
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에 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에 필요한 모든 패키지를 설치할 수 있도록 충족되지 않은 모든 종속성을 업데이트해야 합니다.
행운을 빌어요!