python-is-python3 で python コマンドへのシンボリックリンクを貼る
Ubuntu Linux 22.04 LTS では python コマンドが見つからない。
code:python -V
$ python -V
Command 'python' not found, did you mean:
command 'python3' from deb python3
command 'python' from deb python-is-python3
この回避策として、次のコマンドを実行し python-is-python3 をインストールする。
$ sudo apt install python-is-python3
code:python -V
$ python -V
Python 3.10.6
参考URL