Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

(Solved)Problem when installing Docker for Jupyter-Notebooks

Off-Topic discussions about science, technology, and non Debian specific topics.
Post Reply
Message
Author
Santimirandarp
Posts: 8
Joined: 2017-10-02 06:03

(Solved)Problem when installing Docker for Jupyter-Notebooks

#1 Post by Santimirandarp »

I am following this installation:https://docs.docker.com/engine/installa ... repository
which may be short and simple but it isn't for me.
When running the command:

Code: Select all

curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
I get:

Code: Select all

curl: (22) The requested URL returned error: 404 Not Found
Any idea?
Last edited by Santimirandarp on 2018-01-19 19:44, edited 1 time in total.

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: Problem when installing Docker for Jupyter-Notebooks

#2 Post by debiman »

please enter this command:

Code: Select all

. /etc/os-release; echo "$ID"
what does it return?
have you tried opening the resulting URL manually?

Santimirandarp
Posts: 8
Joined: 2017-10-02 06:03

Re: Problem when installing Docker for Jupyter-Notebooks

#3 Post by Santimirandarp »

Thanks a lot for the reply.
debiman wrote:please enter this command:

Code: Select all

. /etc/os-release; echo "$ID"
what does it return?
have you tried opening the resulting URL manually?
I must have said that my version is totally based on debian jessie 8.8 but called "huayra"

When I type

Code: Select all

. /etc/os-release; echo "$ID"
It returns: Huayra.
I think the error can be there, because that's not a link available in the website. Any solution?

n_hologram
Posts: 459
Joined: 2013-06-16 00:10

Re: Problem when installing Docker for Jupyter-Notebooks

#4 Post by n_hologram »

Santimirandarp wrote:Any ideas?
Just goin' on a whim here:

Code: Select all

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
Or something to that effect.
This was pretty easy after I thought about what debiman said earlier:
debiman wrote:have you tried opening the resulting URL manually?
All I did was go to the section of the url before the string -- everything within $( ) -- and tried the most relevant link.
So, if it does not work, this may be a fair question to keep considering.

EDIT:
Dude, this is the Debian forums; Huayra is based on debian, but not debian enough to reasonably post topics like this here. I recommend building docker from source or checking apt-cache on your distro.
Last edited by n_hologram on 2018-01-19 19:46, edited 1 time in total.
bester69 wrote:There is nothing to install in linux, from time to time i go to google searching for something fresh to install in linux, but, there is nothing
the crunkbong project: scripts, operating system, the list goes on...

Santimirandarp
Posts: 8
Joined: 2017-10-02 06:03

Re: Problem when installing Docker for Jupyter-Notebooks

#5 Post by Santimirandarp »

It worked. Thanks a lot

Post Reply