본문 바로가기
프로그래밍/CI & CD

mac m1 에 brew 설치하기

by startSW 2023. 10. 4.

터미널에 아래의 명령어를 입력합니다.

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

 

설치가 완료되면 아래와 같은 메세지가 나오는 것을 볼 수 있습니다.

==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
    (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/swj/.zprofile
    eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    <https://docs.brew.sh>

 

위 메세지는 설치를 완료하기 위해 추가적인 설정을 하라는 내용입니다. 메세지의 내용중 필요한 부분을 복사해서 아래와 같이 터미널에 입력합니다. brew -v 명령어로 설치가 잘 되었는지 확인합니다.

$ (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/swj/.zprofile
$ eval "$(/opt/homebrew/bin/brew shellenv)"