🗂

Macでhomebrewを複数アカウントで利用する

2022/08/10に公開

terminal

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

.zshrc

export PATH=$HOME/.homebrew/bin:$PATH
export HOMEBREW_CACHE=$HOME/.homebrew/caches

Discussion