homebrewを使ってMercurialをインストールする

Ken published on
2 min, 203 words

Categories: Mac

MacPortsをやめ、homebrewを利用することにした。 ■ mxcl's homebrew at master - GitHub https://github.com/mxcl/homebrew/

インストール手順はここに書いてあるとおり。 ■ Installation - homebrew - GitHub https://github.com/mxcl/homebrew/wiki/installation

ruby -e "$(curl -fsSLk https://gist.github.com/raw/323731/install_homebrew.rb)"

Xcodeをインストール

あとは

brew install ...
とインストールしたいパッケージを指定すればよい。

Mercurialをインストールしようとしたら、出来なかった。 Mercurialはhomebrewを使ってインストールするわけではなく、インストール準備までだった。

brew install python
brew install pip
pip install mercurial

こんな感じにPythonいれて、pipを入れて、pipを利用してMercurialをインストールするという流れ。

sudo ln -s /usr/local/Cellar/python/2.7/bin/hg /usr/local/bin

最後にシンボリックリンクを張り、使いやすくしとく。