Ubuntu 20.04 LTS に steam-launcher をインストールしてみた

インストールしようとするとエラーに

公式サイトからdebファイルがDLできるのですが、
以下の通り、そのままではインストールできませんでした。

$ sudo apt install ~/Downloads/steam_latest.deb
[sudo] password for username:
Reading package lists… Done
Building dependency tree
Reading state information… Done
Note, selecting 'steam-launcher' instead of '/home/username/Downloads/steam_latest.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
steam-launcher : Depends: python but it is not installable
E: Unable to correct problems, you have held broken packages.

書いてある通りなんですが、pythonというコマンドが使えないため、エラーとなっています。

というのも、デフォルトでpython3がインストールされており、
コマンドもpython3です。

$ which python
$ which python3
/usr/bin/python3

対処方法

こちらに書いてありました。

$#ダウンロードする。
$ wget https://repo.steampowered.com/steam/archive/precise/steam-launcher_latest-beta_all.deb
$#インストールする
$ sudo apt install ~/Downloads/steam-launcher_latest-beta_all.deb

私の場合はこれで行けました。
またすぐに更新されると思うので、そのうち通常版でインストールできるようになると思いますが、念の為。