Ubuntu 20.04にpython3を削除する方法
OSバージョンを確認
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=20.04 DISTRIB_CODENAME=focal DISTRIB_DESCRIPTION="Ubuntu 20.04.3 LTS"
python3バージョンを確認
# python3 Python 3.8.10 (default, Sep 28 2021, 16:10:42) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
1.python3.8をアンインストール
# sudo apt-get remove python3.8
2.python3.8および依存パッケージをアンインストール
# sudo apt-get remove --auto-remove python3.8
3.python3の配置ファイルとデータファイルを削除
# sudo apt-get purge python3.8 # sudo apt-get purge --auto-remove python3.8