LoginSignup
3
1

More than 3 years have passed since last update.

homebrew チートシート

Last updated at Posted at 2019-03-05

ダウンロードキャッシュを全て削除する

$ brew cleanup -s

インストール先を確認する

brew ls パッケージ名

任意の場所にインストールする

bundlerとかnpmみたいにプロジェクト固有のbrewツリーを用意できるかも。

mkdir homebrew
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew

formulaのインストール

./homebrew/bin/brew install ffmpeg

Linuxでbrewをセットアップする

https://docs.brew.sh/Homebrew-on-LinuxInstallに書いてある手順だと、sudoが有効だと勝手に/home/linuxbrew/.linuxbrew/にインストールされてしまうという謎仕様なので(一応スクリプトを見てみたがインストール先を変えられるオプションは無いっぽかった)、Alternative Installationに書いてある手順でインストールします。

git clone https://github.com/Homebrew/brew ~/.linuxbrew/Homebrew
mkdir ~/.linuxbrew/bin
ln -s ../Homebrew/bin/brew ~/.linuxbrew/bin
eval $(~/.linuxbrew/bin/brew shellenv)    # <= インストール終了後、この行を ~/.bashrc に追加する
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1