Nvidia-docker: Error: unsupported CUDA version: driver 7.5 < image 8.0

Created on 22 Aug 2016  路  1Comment  路  Source: NVIDIA/nvidia-docker

Hello, I try to install nvidia-docker on ubuntu 14.04 , but it fails with the following message:

Setting up nvidia-docker (1.0.0~rc.3-1) ...
Configuring user
Setting up permissions
start: Job failed to start
invoke-rc.d: initscript nvidia-docker, action "start" failed.
dpkg: error processing package nvidia-docker (--install):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for ureadahead (0.100.0-16) ...
Errors were encountered while processing:
 nvidia-docker

When I try to run smi, I get :

 nvidia-docker run --rm nvidia/cuda nvidia-smi
nvidia-docker | 2016/08/22 12:54:02 Error: unsupported CUDA version: driver 7.5 < image 8.0

when I run nvidia-smi on the host I get this:

| NVIDIA-SMI 352.39     Driver Version: 352.39         |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  Quadro K4000        Off  | 0000:03:00.0     Off |                  N/A |
| 30%   40C    P8    16W /  87W |      9MiB /  3070MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID  Type  Process name                               Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+


work as intended

Most helpful comment

The default image nvidia/cuda is using CUDA 8.0, your driver version (352.39) is insufficient to run CUDA 8.0.
You should use image nvidia/cuda:7.5 instead, or update your driver to 361 or 367. If you have a Geforce 10 series (Pascal) then you need 367.

>All comments

The default image nvidia/cuda is using CUDA 8.0, your driver version (352.39) is insufficient to run CUDA 8.0.
You should use image nvidia/cuda:7.5 instead, or update your driver to 361 or 367. If you have a Geforce 10 series (Pascal) then you need 367.

Was this page helpful?
0 / 5 - 0 ratings