dodgyracer
(Chris Hebden)
December 28, 2020, 6:41pm
1
Hi all - first post… be gentle!
Trying to install on an old Rasberrry Pi B+ using Installing Home Assistant Supervised on a Raspberry Pi with Debian 10
Everything works out fine until the last step - curl -sL “h t tps://raw.githubusercontent.com/Kanga-Who/home-assistant/master/supervised-installer.sh” | bash -s – -m raspberrypi4-64
I’ve changed mine to read
curl -sL “ht t ps://raw.githubusercontent.com/Kanga-Who/home-assistant/master/supervised-installer.sh” | bash -s – -m raspberrypi-32
and
curl -sL “ht t ps://raw.githubusercontent.com/Kanga-Who/home-assistant/master/supervised-installer.sh” | bash -s – -m raspberrypi-64
but neither worked, “[error] missing: docker”
So, used curl -sL “h tt ps://raw.githubusercontent.com/Kanga-Who/home-assistant/master/supervised-installer.sh” | bash -s – -m raspberrypi4-64
This came up with same missing: docker
Any ideas (spaces added into the HTTP to stop linking)?
Cheers Chris
kanga_who
(Jason)
December 29, 2020, 12:04am
2
Might have been better to ask the question in the actual installation thread rather than start an entirely new topic.
Neither of these flags exist.
The available flags for a Pi are;
raspberrypi
raspberrypi2
raspberrypi3
raspberrypi4
raspberrypi3-64
raspberrypi4-64
For a 3b+ you can only use raspberrypi3-64
or raspberrypi3
You are running a Pi3, not a Pi4, so this won’t work.
Did you install Docker first as per the guide?
dodgyracer
(Chris Hebden)
December 29, 2020, 8:05am
3
Yes followed each step of the guide but kept getting “docker has no installation candidate”
francisp
(Francis)
December 29, 2020, 8:11am
4
That is because you need one of these :
raspberrypi
raspberrypi2
raspberrypi3
raspberrypi4
raspberrypi3-64
raspberrypi4-64
dodgyracer
(Chris Hebden)
December 29, 2020, 10:36am
5
The docker process happens before I choose a Raspberry image though?
francisp
(Francis)
December 29, 2020, 5:13pm
6
No. ‘docker has no installation candidate’ means it did not find a suitable image to install.
dodgyracer
(Chris Hebden)
December 29, 2020, 7:28pm
7
@francisp sorry, I’m missing something… the docker install happens first of, I get the message “docker has no installation…” how does choosing the right Pi image change the process before hand? I believe the docker install is the key to this?
m0wlheld
(Christoph Dahlen)
December 29, 2020, 8:23pm
8
My guess is, that Docker has not been installed (for some unknown reason).
Could be easily checked with running docker run --rm hello-world
dodgyracer
(Chris Hebden)
December 29, 2020, 9:18pm
9
Hi @m0wlheld the docker isn’t installed
m0wlheld
(Christoph Dahlen)
December 29, 2020, 10:18pm
10
Then executing the Docker install script should produce output containing some hints.
curl -fsSL get.docker.com | sh
1 Like