아미(아름다운미소)

Homebrew 설치 본문

서버/MAC

Homebrew 설치

유키공 2017. 12. 31. 17:35
Homebrew는 Apple에서 제공하지 않는 유용한 패키지를 관리합니다.
[https://brew.sh/index_ko.html].
설치 명령은 아래와 같습니다.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
설치 후 버전 확인인 -v로 확인 할 수 있습니다.
$ brew -v
Homebrew 1.3.6
Homebrew/homebrew-core (git revision 1728; last commit 2017-10-25)
brew를 통해 설치된 리스트를 확인하려면 list 옵션으로 가능합니다.
$ brew list

만약 설치 후 brew 명령을 실행했을때 -bash: brew: command not found 메시지가 나올경우
PATH적용이 되어있는지 확인합니다.
bash_profile에서 아래 내용을 확인합니다.
$ sudo vim .bash_profile
마지막 줄에 아래 내용을 확인합니다.

export PATH=/usr/local/bin:/usr/local/sbin:$PATH
source로 설정을 저장합니다
$ source ~/.bash_profile
brew로 설치된 항목을 확인하고 싶다면
$ brew list
Comments