Rocky Linux 8 インストール済みのPythonを確認する方法
環境
# cat/etc/redhat-release
Rocky Linux release 8.5 (Green Obsidian)
操作方法
1.Python3がインストールされている
$ which python{,2,3} /usr/bin/python3
2.Python2をインストールする
$ sudo apt install -y python2
3.インストール済みのPythonのバージョンを確認する
$ which python{,2,3} /usr/bin/python2 /usr/bin/python3
4.Python詳細なバージョンを確認する
$ python2 -V $ python3 -V