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


16

このリンクの指示に従ってUbuntu 14.04にCUDAをインストールしようとしましたが、このステップでパッケージの依存関係の問題が発生しました:

~/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.

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


CUDA `と同じ:` CUDA-8-0(> = 8.0.61)が、インストールする予定がない:依存
ソレン

回答:


21

オプション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
    

私は再び得た:次のパッケージには満たされていない依存関係があります:cuda-7-0:依存:cuda-runtime-7-0(= 7.0-28)しかしインストールされませんE:問題を修正できません。壊れたパッケージ。
オーム

2
次に、sudo apt-get install cuda-runtime-7-0などから始めます。別の方法として、aptitude:sudo apt-get-install aptitudeを使用してCUDAをインストールしようとしsudo aptitude install cudaます。
AB

aptitudeを使用したインストール終わりまでに次のメッセージが表示されました:処理中にエラーが発生しました:cuda-drivers cuda-runtime-7-0 cuda-7-0 cuda
Ohm

より詳細なエラーメッセージを投稿できますか?
AB

1
nvidia-opencl-icd- *を削除しましたが、aptitudeでcudaをインストールできました。みんなありがとう!
オーム

2

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

sudo apt-get purge nvidia-*
sudo apt-get autoremove

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

sudo apt-get install cuda

0

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.