3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Homebrew をホームディレクトリ以下にインストール

Posted at
  • Homebrew はデフォルトで /usr/local 以下にインストールされる
  • ただし、インストールに管理者権限が必要
  • インストールに管理者権限必要なのはいやだ
  • そこで、ホームディレクトリ直下に .homebrew というディレクトリを作成し、そのディレクトリ以下に Homebrew をインストールする方法を紹介

homebrew のインストール

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

パスを通す

echo 'export PATH=$HOME/.homebrew/bin:$PATH' >> $HOME/.bash_profile
echo 'export HOMEBREW_CACHE=$HOME/.homebrew/cache' >> $HOME/.bash_profile
source ~/.bash_profile

homebrew のパスを確認

brew --prefix

homebrew のバージョンを確認

brew --version
3
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?