web-dev-qa-db-ja.com

Cudaには依存関係が満たされていない。インストールできません

私はcudaをインストールしようとしてきましたが、私の人生ではこれを理解することはできません。 Ubuntu Serverの新規インストール(uname -a Linux marte 4.18.0-11-generic #12-Ubuntu SMP Tue Oct 23 19:22:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Cosmicを実行)

% Sudo apt-get install cuda
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:
 cuda : Depends: cuda-10-0 (>= 10.0.130) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

その他の役立つ情報はありますか?

壊れたパッケージを見つけようとする私の試み

% Sudo debsums --changed
Sudo debsums --changed  7.72s user 3.54s system 22% cpu 49.658 total

/etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu cosmic main universe
deb http://archive.ubuntu.com/ubuntu cosmic-security main universe
deb http://archive.ubuntu.com/ubuntu cosmic-updates main universe

編集:ウサギ全体を下って、満たされていない依存関係を手動でインストールしようとすると、次の壁に来ました

The following packages have unmet dependencies:
 nvidia-410 : Depends: xorg-video-abi-11 but it is not installable or
                       xorg-video-abi-12 but it is not installable or
                       xorg-video-abi-13 but it is not installable or
                       xorg-video-abi-14 but it is not installable or
                       xorg-video-abi-15 but it is not installable or
                       xorg-video-abi-18 but it is not installable or
                       xorg-video-abi-19 but it is not installable or
                       xorg-video-abi-20 but it is not installable or
                       xorg-video-abi-23 but it is not installable
              Recommends: nvidia-settings (>= 331.20) but it is not going to be installed
              Recommends: nvidia-prime (>= 0.5) but it is not going to be installed or
                          bumblebee but it is not going to be installed

誰か提案はありますか?

1
j-money

Xorg-vide-abi- *を提供するパッケージはxserver-xorg-core(2:1.19.6-ubuntu4.2)でしたが、保留されたパッケージはxserver-xorg-core(2:1.20 *)であり、xerverは提供されませんでした-xorg-coreパッケージが必要

そのため、パッケージはダウングレードすると機能し、アップグレード時にトリック(Sudo apt-mark hold xserver-xorg-core)を無視するとうまくいきました。

2
j-money

問題は、ubuntuがこれらのパッケージの場所を知らないことです。端末に次のコードを入力します。

add-apt-repository ppa:graphics-drivers/ppa
2
jiang xu