Upgrade zu Ubuntu 21.10 | python3 corrupted

Fehlermeldung

Beim Upgrade von Ubuntu 21.04 auf 21.10 bricht das Upgrade mit folgender Fehlermeldung ab:

Can not upgrade
Your python3 install is corrupted. Please fix the '/usr/bin/python3'

Lösung

Zur Behebung des Fehlers muss die Python Verknüpfung von Python 3.6 auf 3.9 angepasst werden:

mv python3 python3_bak
ln -fs /usr/bin/python3.9 /usr/bin/python3


- Dom