본문 바로가기
프로그래밍

[Mac] M1 homebrew 설치 방법 - zsh: command not found

by 소꿍 2021. 5. 19.

맥북 프로 m1 모델을 구입하고.. 환경 설정 중에 homebrew 설치가 되지 않아 한참 헤맸다.

나중의 나를 위해 기록..

 

분명 설치를 했는데 command 창에 brew를 입력하면 아래와 같은 메시지가 출력됐다.

zsh: command not found: brew

 

/opt/homebrew 디렉토리 삭제 후 아래 방법대로 다시 설치하니 해결됐다.(명령어 순서대로 입력)

 

1. /opt 디렉토리로 이동
cd /opt​

 

2. Homebrew 디렉토리를 만든다.(root 권한 필요)
sudo mkdir homebrew​

 


3. /opt/homebrew 디렉토리의 소유권을 부여(root 권한이 필요 없도록)

sudo chown -R $(whoami) /opt/homebrew​

 


4. homebrew를 다운로드하고 압축을 푼다.(https://docs.brew.sh/Installation 참고)
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew​


5. homebrew/bin 디렉토리를 PATH에 추가한다.(zsh를 사용하지 않을 경우 직접 해야 한다고 하는데 나는 그냥 했다..)
echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc​


6. 아래 명령어까지 실행하면 완료!
/bin/bash -c "$(curl -fsSL https://gist.githubusercontent.com/nrubin29/bea5aa83e8dfa91370fe83b62dad6dfa/raw/48f48f7fef21abb308e129a80b3214c2538fc611/homebrew_m1.sh)"​

 

 

Install Native Homebrew on Apple Silicon M1

Install Native Homebrew on Apple Silicon M1. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

 

댓글