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

백승연·2022년 4월 7일
0
zsh: command not found: brew

brew 입력하기만하면 빨간불 떠서ㅠㅠㅠ 반나절동안 서치하고 고생하다 찾아낸 방법...!

/opt/homebrew 디렉토리 삭제 후 아래 방법대로 다시 설치

  1. /opt 디렉토리로 이동
cd /opt​
  1. Homebrew 디렉토리를 만든다.(root 권한 필요)
sudo mkdir homebrew​
  1. /opt/homebrew 디렉토리의 소유권을 부여(root 권한이 필요 없도록)
sudo chown -R $(whoami) /opt/homebrew​
  1. homebrew를 다운로드하고 압축을 푼다.(https://docs.brew.sh/Installation 참고)
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew​
  1. homebrew/bin 디렉토리를 PATH에 추가한다.(zsh를 사용하지 않을 경우 직접 해야 한다고 하는데 그냥 했다..)
echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc​
  1. 마지막! 명령어 실행
/bin/bash -c "$(curl -fsSL https://gist.githubusercontent.com/nrubin29/bea5aa83e8dfa91370fe83b62dad6dfa/raw/48f48f7fef21abb308e129a80b3214c2538fc611/homebrew_m1.sh)"​

참고 : https://gist.github.com/nrubin29/bea5aa83e8dfa91370fe83b62dad6dfa

https://sokkung.tistory.com/148

Mac homebrew mysql 설치 후 ERROR! The server quit without updating PID file

1. brew install mysql
2. sudo mysqld --initialize --user=niee
3. mysql.server start

출처: https://niees.tistory.com/72 [NIEE WEB 개발]

0개의 댓글