Can't upgrade HA 0.114.3 to the latest version. Getting a ERROR!

Uninstalling homeassistant-0.114.3:
Nabu Casa told me: “We have detected that you are running Home Assistant Core 0.114.3. This version has been marked as possibly insecure by the Home Assistant team. To resolve this issue, upgrade your Home Assistant Core to at least 2021.1.3.”
When I try to upgrade HA I get the following error:

"Successfully uninstalled homeassistant-0.114.3
ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency co nflicts.
We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default.

python-miio 0.5.3 requires construct<3.0.0,>=2.10.56, but you’ll have construct 2.9.45 which is incompatible.
python-miio 0.5.3 requires cryptography<3.0,>=2.9, but you’ll have cryptography 3.2 which is incompatible.
python-miio 0.5.3 requires pytz<2020.0,>=2019.3, but you’ll have pytz 2020.1 whi ch is incompatible.
python-miio 0.5.3 requires zeroconf<0.26.0,>=0.25.1, but you’ll have zeroconf 0. 28.1 which is incompatible.
pyipp 0.10.1 requires aiohttp==3.6.2, but you’ll have aiohttp 3.7.3 which is inc ompatible.
pyipp 0.10.1 requires yarl==1.4.2, but you’ll have yarl 1.6.3 which is incompati ble.
hass-nabucasa 0.35.0 requires aiohttp~=3.6.1, but you’ll have aiohttp 3.7.3 whic h is incompatible.
hass-nabucasa 0.35.0 requires cryptography~=2.8, but you’ll have cryptography 3. 2 which is incompatible.
aiohomekit 0.2.46 requires cryptography<3.0,>=2.8, but you’ll have cryptography 3.2 which is incompatible.
Successfully installed aiohttp-3.7.3 cryptography-3.2 h11-0.12.0 homeassistant-2 021.1.4 httpcore-0.12.2 httpx-0.16.1 jinja2-2.11.2 requests-2.25.0 rfc3986-1.4.0 sniffio-1.2.0 typing-extensions-3.7.4.3 voluptuous-0.12.1 yarl-1.6.3
WARNING: You are using pip version 20.2.2; however, version 20.3.3 is available.
You should consider upgrading via the ‘/srv/homeassistant/bin/python -m pip inst all --upgrade pip’ command."

Is there someone who knows what to do?

Thanks

The error tells you what to do:

a) install Docker
b) execute command below
c) relax

docker run -d \
  --name=homeassistant --net=host --restart=always \
  -v (path to your 'config' folder):/config \
  -v /etc/localtime:/etc/localtime:ro \
  homeassistant/home-assistant:latest

It actually seems like hp1 might be better off with a Home Assistant OS install for ease of maintenance.

So I upgraded the pip as indicated: (/srv/ homeassistant /bin/ python -m pip install --upgrade pip --use-feature = 2020-resolver). It was successfully installed v. 3.7.3

After that, I upgraded HA to version 2021.1.4 The upgrading was successfully but I got a ERROR red txt with many things that are not compatible.

“ERROR: pip’s dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.

python-miio 0.5.3 requires construct<3.0.0,>=2.10.56, but you have construct 2.9.45 which is incompatible.

python-miio 0.5.3 requires cryptography<3.0,>=2.9, but you have cryptography 3.2 which is incompatible.

python-miio 0.5.3 requires pytz<2020.0,>=2019.3, but you have pytz 2020.1 which is incompatible.

python-miio 0.5.3 requires zeroconf<0.26.0,>=0.25.1, but you have zeroconf 0.28.1 which is incompatible.

pyipp 0.10.1 requires aiohttp==3.6.2, but you have aiohttp 3.7.3 which is incompatible.

pyipp 0.10.1 requires yarl==1.4.2, but you have yarl 1.6.3 which is incompatible.

hass-nabucasa 0.35.0 requires aiohttp~=3.6.1, but you have aiohttp 3.7.3 which is incompatible.

hass-nabucasa 0.35.0 requires cryptography~=2.8, but you have cryptography 3.2 which is incompatible.

aiohomekit 0.2.46 requires cryptography<3.0,>=2.8, but you have cryptography 3.2 which is incompatible.

Successfully installed aiohttp-3.7.3 cryptography-3.2 h11-0.12.0 homeassistant-2021.1.4 httpcore-0.12.2 httpx-0.16.1 jinja2-2.11.2 pip-20.2.4 requests-2.25.0 rfc3986-1.4.0 sniffio-1.2.0 typing-extensions-3.7.4.3 voluptuous-0.12.1 yarl-1.6.3”

I don’t know what to do now.

See mine and @tom_l’s response above …

This may help:

Thanks for your help!

1 Like