본문 바로가기

Homebrew 명령어 모음

mac 2020. 7. 11.

반응형

Homebrew 설치하기

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

 

Homebrew 업데이트

brew update

 

Homebrew 검사하기

brew doctor

 

패키지 검색

brew search 무엇

 

설치된 패키지 목록 확인

brew list

 

패키지 설치

brew install 무엇

 

패키지 업그레이드

brew upgrade 무엇

 

패키지 삭제

brew uninstall 무엇

 

이전 버전의 패키지 삭제

brew cleanup 무엇

 

brew로 설치한 패키지 위치

/usr/local/Cellar

 


Cask

: Mac에 응용프로그램 설치

 

Error: Calling brew cask install is disabled! Use brew install [--cask] instead.

→ 기존에 'brew cask install 설치할프로그램명'이던게 'brew install --cask 설치할프로그램명'으로 변경되었다.

 

vscode 설치하기

brew install --cask visual-studio-code

 

Notion 설치하기

brew install --cask notion

 

아나콘다 설치하기

brew install --cask anaconda

 

R 설치하기

# R
brew install r

# R-studio
brew install --cask rstudio

 

 

MySQL 설치하기

brew install mysql

→ mysql / openssl@1.1 / protobuf 설치됨

https://mizykk.tistory.com/66

 

 

node.js 설치하기

brew install node

→ node / icu4c 설치됨

 

 

 

Reference

 

 

 

728x90

'mac' 카테고리의 다른 글

[Mac] VirtualBox 설치하기  (0) 2020.12.19
Mac MySQL 설치하기  (0) 2020.08.08
pip3을 pip으로 변경하기  (0) 2020.04.01
mac terminal setting :: 맥 터미널 설정  (0) 2019.11.29
[Mac] python 환경 구성하기 :: Homebrew, pyenv, Anaconda  (1) 2019.11.27

Comments