web-dev-qa-db-ja.com

CUDA 10.2のインストール後の満たされていない依存関係

Aptを使用してcuda 10.2をインストールしてみました。インストールの途中でエラーが発生しました。 NvideaのWebサイトから.runファイルを実行して直接インストールすることができました。しかし今やるとき:

$ Sudo apt upgrade

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies.
 cuda-libraries-dev-10-2 : Depends: libcublas-dev (>= 10.2.2.89) but it is not installed
 cuda-samples-10-2 : Depends: libcublas-dev (>= 10.2.2.89) but it is not installed
 cuda-visual-tools-10-2 : Depends: libcublas-dev (>= 10.2.2.89) but it is not installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

次に行うとき:

$ Sudo apt --fix-broken install

私は得ます:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  libllvm7 libllvm7:i386 libnvidia-common-390 libwayland-client0:i386
  libwayland-server0:i386
Use 'Sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libcublas-dev
The following NEW packages will be installed
  libcublas-dev
0 to upgrade, 1 to newly install, 0 to remove and 33 not to upgrade.
62 not fully installed or removed.
Need to get 0 B/42.3 MB of archives.
After this operation, 114 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 file:/var/cuda-repo-10-2-local-10.2.89-440.33.01  libcublas-dev 10.2.2.89-1 [42.3 MB]
(Reading database ... 473743 files and directories currently installed.)
Preparing to unpack .../libcublas-dev_10.2.2.89-1_AMD64.deb ...
Unpacking libcublas-dev (10.2.2.89-1) ...
dpkg: error processing archive /var/cuda-repo-10-2-local-10.2.89-440.33.01/./libcublas-dev_10.2.2.89-1_AMD64.deb (--unpack):
 trying to overwrite '/usr/include/nvblas.h', which is also in package nvidia-cuda-dev 9.1.85-3ubuntu1
dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cuda-repo-10-2-local-10.2.89-440.33.01/./libcublas-dev_10.2.2.89-1_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

行うとき:

$nvcc --version

私は得ます:

nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Wed_Oct_23_19:24:38_PDT_2019
Cuda compilation tools, release 10.2, V10.2.89

壊れたパッケージを修正する方法についてのアイデアはありますか?

2

さて、私はオンラインで解決策を見つけることができました:

1)プライムプロファイルをインテルに切り替えました。 2)cuda.listファイルを別の場所に移動しました(インストールした10.2バージョン)3)cuda 10.2へのパスを指す.bashrcのコメント行(必要な場合は不明)4)再起動5)$ Sudo apt --fix-壊れたインストール

(そして今回はうまくいった!)

6)プライムプロファイルをnvidiaに戻しました。

そしてそれはうまくいった。これでcuda 10.2がインストールされ、aptは依存関係を壊しなくなりました。 :-)

1