インストールしようとするとエラーに
公式サイトからdebファイルがDLできるのですが、
以下の通り、そのままではインストールできませんでした。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $ 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です。
1 2 3 | $ which python $ which python3 /usr/bin/python3 |
対処方法
こちらに書いてありました。
1 2 3 4 | $#ダウンロードする。 $#インストールする $ sudo apt install ~/Downloads/steam-launcher_latest-beta_all.deb |
私の場合はこれで行けました。
またすぐに更新されると思うので、そのうち通常版でインストールできるようになると思いますが、念の為。