未满足的依赖!在新安装的 ubuntu 14.04 上安装 Cuda 6.5 时
Unmet dependences! when install Cuda 6.5 on a freshly installed ubuntu 14.04
我按照教程here安装了Cuda 6.5,当我尝试apt-get install cuda时,出现以下错误:
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.
我已经从 google 那里得到了一些解决方案,但是其中 none 解决了我的问题。
作为新系统,唯一安装的软件是chrome浏览器。
已解决,删除所有 libcheese* 包,然后在完成安装 Cuda 后重新安装 ubuntu-desktop。我不确定这是否是一个好的解决方案,但我成功安装了 Cuda,直到现在没有发现任何问题。
使用新立得包管理器。 https://help.ubuntu.com/community/SynapticHowto 我认为它在查找依赖关系方面往往做得更好。
确保在尝试安装之前更新您的安装。确保没有包冲突,因为这往往会产生问题。如果您发现任何冲突,请卸载软件包并重试。
我在 Ubuntu 14.04 上遇到了与 CUDA 7.0 基本相同的问题。只需将 apt-get 声称具有未满足依赖关系的包添加到 apt-get install cuda
对我有用:
sudo apt-get install cuda libcheese-gtk23 libcheese7 libclutter-1.0-0 libclutter-gtk-1.0-0 libcogl15
尝试卸载这些未满足的依赖项之一。然后这些依赖项将自动安装。错误传递!像这样尝试:
sudo apt-get --purge remove libcheese-gtk23
这对我有用!!
我按照教程here安装了Cuda 6.5,当我尝试apt-get install cuda时,出现以下错误:
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.
我已经从 google 那里得到了一些解决方案,但是其中 none 解决了我的问题。 作为新系统,唯一安装的软件是chrome浏览器。
已解决,删除所有 libcheese* 包,然后在完成安装 Cuda 后重新安装 ubuntu-desktop。我不确定这是否是一个好的解决方案,但我成功安装了 Cuda,直到现在没有发现任何问题。
使用新立得包管理器。 https://help.ubuntu.com/community/SynapticHowto 我认为它在查找依赖关系方面往往做得更好。
确保在尝试安装之前更新您的安装。确保没有包冲突,因为这往往会产生问题。如果您发现任何冲突,请卸载软件包并重试。
我在 Ubuntu 14.04 上遇到了与 CUDA 7.0 基本相同的问题。只需将 apt-get 声称具有未满足依赖关系的包添加到 apt-get install cuda
对我有用:
sudo apt-get install cuda libcheese-gtk23 libcheese7 libclutter-1.0-0 libclutter-gtk-1.0-0 libcogl15
尝试卸载这些未满足的依赖项之一。然后这些依赖项将自动安装。错误传递!像这样尝试:
sudo apt-get --purge remove libcheese-gtk23
这对我有用!!