본문 바로가기
STUDY/ETC

Homebrew

by NOTEEE 2018. 1. 22.

Homebrew?

- 맥 사용자들을 위한 패키지 관리자.

- 저장소(리눅스 : yum)


Homwbrew 설치

1
/usr/bin/ruby -"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
cs


Homebrew 기본사용법

1
brew help
cs


Homebrew 패키지 설치

1
brew install 패키지명
cs


Homebrew 패키지 삭제 

1
brew uninstall 패키지명
cs


Homebrew 설치된 리스트

1
brew list
cs


Homebrew 이미 설치되어있는 패키지를 업그레이드하기

1
brew upgrade 패키지명
cs


Homebrew 이미 설치되어있는 패키지를 전체 업그레이드하기

1
brew upgrade
cs


Homebrew 프로그램을 검색할 때 최신버전으로 맞추어주는 것(프로그램들의 목록을 최신상태로 유지하는 것)

1
brew update
cs


Homebrew 삭제

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


'STUDY > ETC' 카테고리의 다른 글

HTTP프로토콜 HTML5 Geolocation API 위치정보 사용에 대하여  (0) 2018.01.22
Redis(레디스)  (0) 2018.01.22
이클립스 SVN target 제외하기  (0) 2018.01.22
도메인 CNAME 설정  (0) 2018.01.22
SSL?  (0) 2018.01.22