Homebrew 기본 명령어

이태혁·2020년 6월 10일
6

Homebrew: 맥용 어플리케이션등을 터미널 환경에서 설치할 수 있는 앱스토어(?) 정도라고 생각하시면 됩니다.

1. Homebrew 설치

  • xㅇcode 혹은 xcode command line tools 설치
# Xcode Command line tools 설치
xcode-select --install

Homebrew 설치

# Homebrew 설치하기
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# 설치확인
brew -v

2. Homebrew를 이용한 어플리케이션 설치,삭제 등

brew update : brew를 최신버전으로 업데이트

brew search <패키지명> : 프로그램이 있는지 검색

brew install <패키지명>[@버전] : 프로그램 설치(최신버전으로)
ex) brew install mysql, brew install mysql@5.5

확인

brew list : 깔려있는 패키지 확인
brew info <패키지명> : 패키지 정보보기

업데이트

brew outdated : 업그레이드 필요한 프로그램 찾기

brew upgrade <패키지명>: 패키지 업그레이드

brew upgrade : 모드 패키지 업그레이드

삭제

brew cleanup <패키지명> : 버전을 여러개 깔았는데 최신버전 이외의 버전들 전부 삭제
brew uninstall <패키지명> : 특정 패키지 삭제

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
: Homebrew 삭제하기

profile
back-end, cloud, docker, web의 관심이 있는 예비개발자입니다.

2개의 댓글

comment-user-thumbnail
2022년 1월 25일

도움받고 갑니다.
brew upgrade : 모드 패키지 업그레이드
모드 -> 모든 오타 있네요

1개의 답글