반응형
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
로 브리뷰 설치
brew 읽기 경로 수정
특정 버전에서 Brew는 Intel 기반 Mac의 경우 '/usr/local/bin' 디렉터리에 설치되는 반면, M1/M2 Mac의 경우 Brew는 '/opt/homebrew/bin' 디렉터리에 설치됩니다. 이러한 차이로 인해 Brew 명령을 사용할 때 "zsh: 명령을 찾을 수 없음: Brew"라는 오류 메시지가 나타날 수 있습니다.
cd ~/
touch .zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
위에서 차례대로 한개씩 명령어 시도
다시 brew 읽기 시도
참조
https://techsviewer.com/how-to-install-brew-on-macos-sonoma/
반응형
'에러' 카테고리의 다른 글
에러) fatal: not a git repository (or any of the parent directories): .git (0) | 2022.04.07 |
---|---|
ChunkLoadError Loading chunk node_modules next_dist_client_dev_noop js failed (0) | 2022.02.23 |
{"_U": 0, "_V": 0, "_W": null, "_X": null} (0) | 2021.07.22 |
code: 'ER_BAD_FIELD_ERROR', errno: 1054, (0) | 2021.07.09 |
에러) Cannot Add Foreign Key Constraint (0) | 2021.07.06 |