Image of Nuidia Theano docker not available

Trying to run docker command:

nvidia-docker run -d -p 8888:8888 -e PASSWORD="123abcChangeThis" theano_secure start-notebook.sh # Then open your browser at http://HOST:8888 

taken from https://github.com/nouiz/Theano-Docker

returns an error:

 Error: image library/theano_secure:latest not found 

Is the theano_secure image currently unavailable?

Search theano_secure:

 $ nvidia-docker search theano_secure:latest NAME DESCRIPTION STARS OFFICIAL AUTOMATED 

The return of this command is empty, so the image is not available? If so, is there an alternative image of Theano docker from nvidia?

Update:

source building:

 docker build -t theano_secure -f Dockerfile.0.8.X.jupyter.cuda.secure . 

returns:

 Err http://developer.download.nvidia.com Release.gpg Unable to connect to developer.download.nvidia.com:http: [IP: 184.24.98.231 80] 

and:

 W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease 

Manually checking URLs: http://developer.download.nvidia.com and http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease are both not available. Should I build with an alternative docker file?

Update 2:

I think this error occurs as http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease does not exist. However, http://archive.ubuntu.com/ubuntu/dists/trusty/Release exists.

Can dockers be modified to use http://archive.ubuntu.com/ubuntu/dists/trusty/Release instead of http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease ?

OS Version:

 lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 14.04.4 LTS Release: 14.04 Codename: trusty 

Update 3:

"you must first build docker", before running nvidia-docker "I tried

 docker build -t theano_secure -f Dockerfile.0.8.X.jupyter.cuda.secure . 

which returns:

 Err http://developer.download.nvidia.com Release.gpg Unable to connect to developer.download.nvidia.com:http: [IP: 184.24.98.231 80] 

I can pull out a docker pull kaixhin/theano image, but this does not work through a Jupyter laptop in the same way as nvidia-docker run -it -p 8888:8888 tensorflow/tensorflow:latest-gpu registered at https: //hub.docker. com / r / tensorflow / tensorflow / , There seems to be no Jupyter Theano dockers available.

How to open a docker kaixhin / anano instance through a Jupyter laptop?

I tried: nvidia-docker run -d -p 8893:8893 -v --name theano2 kaixhin/theano start-notebook.sh but get the error:

  docker: Error response from daemon: invalid header field value "oci runtime error: container_linux.go:247: starting container process caused \"exec: \\\"start-notebook.sh\\\": executable file not found in $PATH\"\n". 

Modifying a docker kaixhin/theano container to expose it through a Jupyter laptop?

+5
source share
2 answers
 Error: image library/theano_secure:latest not found 

Since theano_secure does not like ubuntu , centos , it is not an official repository on the theano_secure hub, so you need to create it yourself.

 Err http://developer.download.nvidia.com Release.gpg Unable to connect to developer.download.nvidia.com:http: [IP: 184.24.98.231 80] 

First check your internet connection, telnet 184.24.98.231 80 .

Perhaps you are in a limited network location, try a proxy server to do it again. You can see how to create an image behind a proxy server .

+2
source

From what I understand from nouiz/Theano-Docker README , you should docker build first before nvidia-docker run .

But since the assembly is complicated, I would try docker pull kaixhin/theano (from kaixhin/cuda-theano/ ) instead, which is much more recent (3 days ago), which is based on theano Dockerfile ,

This image relies on CUDA and must run on the Ubuntu host platform with NVIDIA Docker installed. Driver requirements can be found on the NVIDIA Docker wiki page .

+1
source

Source: https://habr.com/ru/post/1261641/


All Articles