category icon
2022-05-08
Linux

[apt install] Unable to locate package エラーの解決方法

Windows 10 64bit
21H1
WSL
2
Ubuntu
20.04
profile
hikaru
Software Developer / DIY'er

(1) 現象

tree コマンドをインストールしようとしたら E: Unable to locate package tree エラーが表示された。

shell
$ sudo apt install tree
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package tree

(2) 対処

Ubuntu のパッケージ管理システムである apt をアップデートすることで解決します。

shell
$ sudo apt update

アップデート完了後、sudo apt install tree コマンドで tree コマンドが無事にインストールできました。