My install does not have the add node secure option like below.
any help with this please?
Thanks,
My install does not have the add node secure option like below.
any help with this please?
Thanks,
What version are you running?
pi@hassbian:/home/homeassistant/.homeassistant $ hass --version
0.50.2
but on the GUI when i got to about it reads…
Home Assistant
0.46.0
Not sure why you have a version mismatch but I believe 0.46 predates the addition of Secure Add.
i wonder if i am running multiple versions somehow?
There’s a surprising amount of people that do this by accident.
My guess is that when you installed HA you put it in a virtual environment?
At some point since doing that, you started doing the upgrade procedure without activating the virtual environment first, so on your system you have an unused ‘latest version’ but the version you’re actually running in the venv has not been updated.
To fix, log in to your pi as the pi user. Then…
sudo su -s /bin/bash homeassistant
cd
source /srv/bin/homeassistant/activate
pip3 install --upgrade homeassistant
(using the correct username and source path for your installation, and making sure it’s the virtual environment version that starts on boot in your systemctl service)