web-dev-qa-db-ja.com

Ubuntu 14.04にCUDAをインストールする際のパッケージ依存関係の問題

Ubuntu-14.04にCUDAをインストールするために link の指示に従おうとしましたが、このステップでパッケージの依存関係の問題が発生しました:

~/Downloads$ Sudo apt-get install cudaReading 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-7-0 (= 7.0-28) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

誰かが問題の原因を知っていますか?

11
Ohm

オプション1:apt-get

  1. 満たされていない依存関係をインストールする

    Sudo apt-get install cuda-runtime-7-0
    ...
    <more unmet dependencies>
    ....
    Sudo apt-get install cuda-7-0
    
  2. メインパッケージをインストールする

    Sudo apt-get install cuda
    

オプション2:aptitude

  1. Aptitudeをインストールする

    Sudo apt-get install aptitude
    
  2. メインパッケージをインストールする

    Sudo aptitude install cuda
    
17
A.B.

Ubuntuのリポジトリからの矛盾したバージョンのように、特定のnvidiaドライバーまたは欠陥のあるcudaツールキットを以前にインストールしたようです。最初に削除する必要があります。

Sudo apt-get purge nvidia-*
Sudo apt-get autoremove

そしてcudaをインストールします。

Sudo apt-get install cuda
2
Chauncey Chen

CUDAドライバーとの現在のGNOME統合には問題があるようです(v 346.46)。ログインセッションの初期化に問題がありましたが、ここで説明するようにlxdeをインストールし、gnomeとubuntu-desktopを削除することで解決できました。 caffe installation issues

0
Ruslan