未满足的依赖!在新安装的ubuntu 14.04上安装Cuda 6.5时

lzq*_*179 3 ubuntu cuda

我按照这里的教程安装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.
Run Code Online (Sandbox Code Playgroud)

我已经从谷歌获得了一些解决方案,但没有一个解决了我的问题.作为新系统,唯一安装的软件是Chrome浏览器.

通过删除所有libcheese*软件包解决,然后在完成安装Cuda后重新安装ubuntu-desktop.我不确定它是否是一个很好的解决方案,但我成功安装了Cuda,直到现在都没有发现任何问题.

Ulr*_*ern 7

我在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
Run Code Online (Sandbox Code Playgroud)