반응형
공식 홈에 나와있는 아래 명령어로 설치 하면 "zsh command not found brew" 로 실행 되지 않습니다.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
따라서 아래와 같이 설치가 필요합니다.
# We'll be installing Homebrew in the /opt directory.
cd /opt
# Create a directory for Homebrew. This requires root permissions.
sudo mkdir homebrew
# Make us the owner of the directory so that we no longer require root permissions.
sudo chown -R $(whoami) /opt/homebrew
# Download and unzip Homebrew. This command can be found at https://docs.brew.sh/Installation.
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
# Add the Homebrew bin directory to the PATH. If you don't use zsh, you'll need to do this yourself.
echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc
터미널을 재실행합니다. 끝
반응형
'IT' 카테고리의 다른 글
MSA(Micro Service Architecture)와 API Gateway (0) | 2021.09.23 |
---|---|
VSC(Visual Studio Code) 유용한 단축키 모음 (0) | 2021.09.15 |
[맥북단축키] iterm2 문장 맨앞 맨끝으로 커서 이동 + 단어로 커서 이동 설정 (0) | 2021.09.09 |
visual studio code 단축키 모음(맥북, 윈도우) (0) | 2021.09.06 |
이중화란? 고가용성(HA,High Avaliability)을 위한 이중화 (0) | 2021.09.03 |