우분투나 센트오에스에서 제공해주는 패키지 관리자로는 yum이 있다.
애플에서는 어떠한 패키지 관리자도 제공해주지 않기 때문에 우리가 설치를 해야 한다.
1. hombrew 설치
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2. 설치 되었는지 확인 (버전 확인)
brew -v
3. 패키지 설치
brew install wget
4. 패키지 설치된 것들 확인하기
brew list
Homebrew를 제거
$ cd `brew --prefix`
$ rm -rf Cellar
$ brew prune
$ rm `git ls-files`
$ rmdir Library/Homebrew Library/Aliases Library/Formula Library/Contributions
$ rm -rf .git
$ rm -rf ~/Library/Caches/Homebrew
참고 사이트
https://brew.sh/index_ko.html
https://github.com/mimul/dev-environment/blob/master/mac-homebrew.md
'STUDY > OS X Mac' 카테고리의 다른 글
맥 putty 설치하지 말고, 터미널에서 하자. 맥 telnet, ssh (0) | 2017.03.06 |
---|---|
Homebrew 사용법 (0) | 2017.03.06 |
[Engineer on the Mac] 맥에서 설치디스크 만들기 (0) | 2017.03.02 |
[Engineer on the Mac] telnet 사용법 (0) | 2017.02.28 |
[Engineer on the Mac] USB to Serial(RS-232), UC-232A (0) | 2017.02.28 |