ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 맥북 Homebrew 설치하기
    소프트웨어 개발 툴 2019. 2. 3. 15:51

     맥북을 사용하는 개발자라면 반드시 필요한 것 중 하나!! 바로 Homebrew이다. Homebrew는 패키지 관리 시스템(Package Management System)인데 이 툴을 이용하면 각종 소프트웨어 패키지를 다운받을 수 있다. 리눅스에서 사용하는 apt-get과 비슷하다고 생각하면 된다. Homebrew말고도 MacPort라는 툴이 있는데, 나는 한번밖에 안써봐서 잘 모른다. 아무튼 여러분이 개발 할때 자바나, 파이썬이나, 아니면 여러가자 툴을 다운받을 때 Homebrew를 사용하면 굉장히 간편하다. 따라서 오늘은 Homebrew를 다운받는 방법을 다뤄보도록 하겠다.

    Homebrew 설치하기

      터미널을 켜라(Command+스페이스바로 Spotlight실행 후 Terminal입력). 켰다면 맥북 커맨드라인 툴인 x-code부터 설치하도록 하자. 

    xcode-select --install xcode-select: error: command line tools are already installed, use "Software Update" to install updates

    만약 이미 설치 되어 있다면 위처럼 에러가 날 것이고 아니라면 xcode가 설치 될 것이다.


    우리는 루비를 이용해 Homebrew를 설치 할 것이다. 루비(Ruby)는 맥OS에 포함되어 있으므로 따로 설치하지 않아도 된다. 이제 홈브류 설치를 위해 다음과 같은 명령어를 사용하자. 또는 홈브류 사이트에서 설명한 방법대로 설치해도 된다.

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    다음과 같은 내용이 뜨면 리턴 키를 눌러 진행하자.

    ==> This script will install:
    /usr/local/bin/brew
    /usr/local/Library/...
    /usr/local/share/man/man1/brew.1

    Press RETURN to continue or any other key to abort

    설치가 완료되면 다음과 같은 화면이 뜰 것이다.

    ==> Installation successful!
    ==> Next steps
    Run 'brew doctor' before you install anything
    Run 'brew help' to get started

    위의 내용이 말하는 대로 'brew doctor'를 실행 해 보자.

    brew doctor

    Your system is ready to brew.

    brew doctor를 치고 리턴 키를 누르면 Your system is ready to brew.하고 메시지가 나올 것이다. 설치 완료!


    이제 brew를 이용해 자바나 파이썬등등을 다운로드 할 수 있다. 보통 명령어는 'brew install <package_name>' 또는 'brew cask install <package_name>'이다.

    댓글

f.software engineer @ All Right Reserved