我升级到了最新的 Ubuntu 22.04 LTS。之前我使用的是 Python 3.9,但我需要 3.10,所以我安装了,
sudo apt install python3.10
更新后,标准 Python 升级到 3.10,所以我不再需要该python3.10
软件包。我检查了 python3 和 python3.10 是不同的安装,
which python3
/usr/bin/python3
which python3.10
/usr/bin/python3.10
所以我决定清除 3.10。
sudo apt purge python3.10
这卸载了很多软件包,比如xserver-common
和gnome-terminal
。我很幸运地发现了这一点,所以我运行了,
sudo apt install python3
重新安装了大部分内容。我感到很困惑和害怕。python3.10
并且python3
又出现在了bin
。为什么?我哪里做错了?