Homebrew를 Mac OS X Mountain Lion에 설치
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$
여기서 지적된 것은
라는 것입니다.
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
하거나 단말기를 다시 시작합니다.참고 사이트
Reference
이 문제에 관하여(Homebrew를 Mac OS X Mountain Lion에 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/wnoguchi/items/1ca12bf5e02f81010aab텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)