Xcodeをインストールしただけで、Command Line Toolはまだインストールされていなかった…
ダイアログが表示されるので、インストールを選択
Command Line Toolがインストールされ、Homebrewのインストールが進んでいく
12345678910
==> Installation successful!
You should run 'brew doctor' *before* you install anything.
// brew doctorで確認
$ brew doctor
Your system is ready to brew.
// バージョンを見る
$ brew --version
0.9.5
パスを通す
ホームディレクトリ直下に.bash_profileと.bashrcを作成する(ない場合)
.bash_profileに以下を記述
12345678
$ touch ~/.bash_profile .bashrc <- 作成
$ vim ~/.bash_profile <- vim起動
...
# Terminal起動時は.bash_profile→.bashrcが、シェル切り替え時は.bashrcが単体で読込まれる
# なので、以後の設定は.bashrcに記述するとどのような場合でも同じパス設定が読込まれる。
if [-f ~/.bashrc]; then
. ~/.bashrc
fi