Homebrew를 Mac OS X Mountain Lion에 설치

Ruby가 들어 있는지 확인합니다. 어쩌면 기본적으로 들어 있습니다.
noguchiwataru-no-MacBook-Air:~ noguchiwataru$ ruby -v
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]

homebrew를 설치.
noguchiwataru-no-MacBook-Air:~ noguchiwataru$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press ENTER to continue or any other key to abort
==> /usr/bin/sudo /bin/mkdir /usr/local

WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.

To proceed, enter your password, or type Ctrl-C to abort.

Password:
==> /usr/bin/sudo /bin/chmod g+rwx /usr/local
==> /usr/bin/sudo /usr/bin/chgrp admin /usr/local
==> Downloading and Installing Homebrew...
Warning: Install the "Command Line Tools for Xcode": http://connect.apple.com
==> Installation successful!
You should run `brew doctor' *before* you install anything.
Now type: brew help

경고가 나와 homebrew로 설치하기 전에 brew doctor 하십시오라고합니다.
noguchiwataru-no-MacBook-Air:~ noguchiwataru$ brew doctor
You must: brew install git
Warning: An outdated version of Git was detected in your PATH.
Git 1.7.10 or newer is required to perform checkouts over HTTPS from GitHub.
Please upgrade: brew upgrade git
You must: brew install git

Warning: No developer tools installed
You should install the Command Line Tools:
  https://developer.apple.com/downloads/
noguchiwataru-no-MacBook-Air:~ noguchiwataru$ 

여기서 지적된 것은
  • Git 버전이 오래되었습니다
  • Xcode 명령 줄 도구가 없습니다

  • 라는 것입니다.

    Command Line Tools 설치



    그 전에 Xcode를 넣은 것 같지만 실망했습니다.

    방문하여 로그인.
    Apple ID가 없는 경우 생성합니다.
    꽤 귀찮습니다.
    xcode 를 검색하여 나온 다음 이미지의 zip을 다운로드하고 지시에 따라 설치하십시오.



    이제 Command Line Tools가 들어 왔으므로 터미널을 다시 시작합니다.
    noguchiwataru-no-MacBook-Air:~ noguchiwataru$ brew doctor
    Your system is ready to brew.
    

    되면 OK입니다.

    최신 git 설치



    Mac에 번들 된 버전의 git 버전이 오래되었으므로 일본어 파일 이름을 처리하는 데 문제가 있습니다.
    이 단계에서 버전 업해 둡니다.
    원래 이 단계에서 which git 에 히트 하지 않기 때문에, git 자체가 인스톨 되고 있는지 어떤지 수상합니다만···.
    brew install git
    

    이 상태에서는 homebrew로 설치된 바이너리가 로드되지 않으므로,

    ~/.bash_profile
    export PATH="/usr/local/bin:$PATH"
    

    느낌으로 설정하여 source ~/.bash_profile 하거나 단말기를 다시 시작합니다.

    참고 사이트


  • Homebrew — MacPorts driving you to drink? Try Homebrew!
  • homebrew - How to properly update git on mac? - Ask Different
  • 좋은 웹페이지 즐겨찾기