尝试更新 Python 3.9 出现错误

Trying to update Python 3.9 giving errors

我做了什么:

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.9
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2

python --version

现在我有多个错误,无法启动终结器或更新。当我启动 mate terminal 时,我收到这个错误:

/usr/bin/screenfetch: /usr/bin/lsb_release : /usr/bin/python3 : mauvais interpréteur: Aucun fichier ou dossier de ce type

当我使用 synaptic 实现时,我收到此错误:

E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/lib/command-not-found/ -a -e /usr/lib/cnf-update-db; then /usr/lib/cnf-update-db > /dev/null; fi'
E: Sub-process returned an error code

所有这些错误都是从安装 Python 开始的,正如我在开头所描述的那样。

我发现 post : Problem with sudo apt update in Ubuntu 18.04: Post-Invoke-Success if /usr/bin/test -w /var/lib/command-not-found/

我通过以下方式找到了答案:

apt download python3-minimal
sudo apt install --reinstall ./python3-minimal_*.deb
sudo apt install -f

在那几行之后我不得不重新安装一些应用程序,一切都恢复正常了。