맥북

homebrew-cask 란? 설치 방법과 사용법

탁이 2019. 12. 11. 08:40

homebrew-cask란 Homebrew의 확장 입니다. Homebrew는 패키지를 터미널(쉘)에서 코맨드를 입력하는것만으로 설치를 해 주는데요. homebrew-cask는 GUI즉 맥의 응용프로그램을 코맨드로 설치할 수 있도록 해 주는 편리한 기능입니다.

 

참고:

[맥북/사용법] - Homebrew란? 설치 방법과 사용 방법

 

만일 크롬을 깐다고 하면, 웹사이트로 가서, dmg화일을 다운로드 받고, 응용프로그램의 위치를 어플리케이션으로 옮겨주는 등등 일련의 귀찮은 설치작업 없이 커맨드 한줄로 한방에 끝낼 수 있습니다.

 

homebrew와 homebrew-cask의 차이

homebrew

Mac 용 패키지 매니저. 터미널에서 팩키지를 설치합니다.

예 1. git

brew install git

예 2. python

brew install python3

 

homebrew-cask

homebrew의 확장으로 Mac용 GUI 애플리케이션 을 명령어로 설치합니다.

예 1. google-chorme

brew cask install google-chrome

 

예 2. xamarin-studio

brew cask install xamarin-studio

 

 

homebrew-cask 사용 방법

터미널에서 brew cask 커맨드를 입력하고 아래와 같은 화면이 나오면 사용할 수 있는 환경입니다.

$ brew cask
Homebrew Cask provides a friendly CLI workflow for the administration
of macOS applications distributed as binaries.

Commands:

    audit      verifies installability of Casks
    cat        dump raw source of the given Cask to the standard output
    create     creates the given Cask and opens it in an editor
    doctor     checks for configuration issues
    edit       edits the given Cask
    fetch      downloads remote application files to local cache
    home       opens the homepage of the given Cask
    info       displays information about the given Cask
    install    installs the given Cask
    list       with no args, lists installed Casks; given installed Casks, lists staged files
    outdated   list the outdated installed Casks
    reinstall  reinstalls the given Cask
    style      checks Cask style using RuboCop
    uninstall  uninstalls the given Cask
    upgrade    upgrades all outdated casks
    zap        zaps all files associated with the given Cask

See also "man brew-cask"

만일 위와 같은 화면이 나오지 않는다면, homebrew를 설치합니다. 설치방법은 참고:

[맥북/사용법] - Homebrew란? 설치 방법과 사용 방법

 

설치 장소는

brew cask로 설치한 응용프로그램은 기본적으로 어플리케이션 폴더에 설치가 됩니다.

~/Applications

 

설치한 응용 프로그램을 확인 하려면

brew cask로 설치한 응용프로그램을 확인할 때는 아래와 같이 명령어를 입력해 줍니다.

$ brew cask list

 

설치한 응용 프로그램을 업데이트 하려면

brew cask로 설치한 응용프프로그램을 업데이트 할 경우 아래와 같이 입력하면 됩니다.

$ brew cask upgrade