あきろぐ

いろいろめもするよ🐈🐈🐈

【めも】linuxbrewコマンドのインストールに失敗するときはアップデートすると良い

何をしていたのか

自分のLinux環境にaws-vaultを導入しようと思い、まずはlinuxbrewを公式HPを見てインストールしていたら失敗した。
実行していたコマンドは下記。

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"

docs.brew.sh

環境

  • CentOS7.6

対処法

yumのアップデートで解決。

sudo yum update
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"

ubuntu環境では、build-essentialのインストールが失敗していたが、これもapt-getのアップデートで解決。

sudo apt-get update
sudo apt-get install build-essential curl file git

おわり