The hass don't updating

Did you activate the venv before upgrading?

Yes, with is: source /srv/homeassistant/bin/activate

You should be able to upgrade like this:

sudo apt-get update
sudo apt-get -y upgrade
sudo systemctl stop [email protected]
sudo su -s /bin/bash homeassistant
source /srv/homeassistant/bin/activate
pip3 install --upgrade homeassistant
exit
sudo systemctl start [email protected]

exactly!!
It always worked!

Sorry to suggest the obvious.

Please try pip3 install homeassistant==0.52.1.

You don’t get any errors, do you?
What does hass --version give you?

Have you tried clearing the browser cache?

Yes, in other PC too.

I tryed, says “Requirement already satisfied” too, but hass --version returns 0.52.1 how it’s possible?

So, you are running the latest version already. It most certainly is a browser cache issue. Did you try other devices or browsers?

There seems to be an issue with certain browsers. States page blank since upgrade to 51.1

Yes, I tryed in 3 PCs, work PC, home PC and notebook (cleaned cache in all)

try cat .HA_VERSION inside your HA homefolder. the output should be “0.52.1”.

are you running a local proxy or anything caching websites for you?

Shows 0.49.0
(No are running any proxy or caching)
I tryed in 3 PCs, work PC, home PC

Ok. You can uninstall HA and reinstall it manually.

sudo systemctl stop [email protected]
sudo su -s /bin/bash homeassistant
source /srv/homeassistant/bin/activate
pip3 uninstall homeassistant
pip3 install homeassistant==0.52.1
exit
sudo systemctl start [email protected]

Another possibility is that you are not running HA from the same place that you are updating.

1 Like

gpbenton, how do I certify myself?

cgtobi, do I need to backup my config files? Or are they not affected?

They are not affected. But in general it is always handy to have at least the config files backed up.

Well you don’t say how you are running HA, but firstly I would make sure I was running the correct version by first stopping any existing HA instance, then

 source /srv/homeassistant/bin/activate
 which hass  # this should print out /srv/homeassistant/bin/hass

 hass

This will start up HA in the console and you can be sure it is actually running the version that has been downloaded.

If that shows the correct version, then we can figure out what is going wrong with your normal start.

I found the error, uninstalled it as you said it, and remained in the instance (version 49) running. Was with 2 haas, / srv / homeassistant / homeassistant_venv / bin and / srv / homeassistant / bin /. I’m ashamed of my mistake. Thanks for everyone’s help.

1 Like

No worries. As long as you’re back to a working instance, all is good.