mac os 에서 Homebrew 설치 시 발생하는 PATH 문제 해결
==> Updating Homebrew... Warning: /opt/homebrew/bin is not in your PATH. Instructions on how to configure your shell for Homebrew can be found in the 'Next steps' section below. |
문제 해결 방법
발생된 에러 '/opt/homebrew/bin is not in your PATH' 는 해당 경로 등록함으로 쉽게 해결할 수 있습니다.
1. 터미널에서 아래 명령어를 실행합니다.
echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc
2. 확인 (생략 가능)
vi ./.zshrc
3. 명령어 실행으로 zshrc 쉘 환경을 재로드
source ~/.zshrc
4. brew 버전 확인
brew --version
'Programming > 기타' 카테고리의 다른 글
[mac os] Homebrew 설치 (0) | 2024.04.03 |
---|---|
[mac os] git 설치 (0) | 2024.04.03 |
[기타/톰캣에러]The server cannot be started because one or more of the ports are invalid. Open the server editor and correct the invalid ports. (0) | 2021.03.24 |
[Eclipse] 이클립스 The name is already in use. Specify a different name. 에러 (0) | 2020.07.07 |
[Git]이클립스 git에러(cannot open git-upload-pack) (0) | 2019.09.24 |