시나리오 : homebrew 설치 후 명령어를 실행하면 command not found: brew 가 뜨는 현상
당황하지말고 터미널에 로그를 찬찬히 보면
원인
: Warning: /opt/homebrew/bin is not in your PATH 메시지를 확인할 수 있다.
해결책
: Path에 등록해준다!
순차적으로 해결해보자.
1. PATH에 등록을 해주도록 한다.
echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc
2. source 명령어를 통해서 반영한다.
source ~/.zshrc
3.잘 반영이 되었는지 확인해본다.
vi ~/.zshrc
[전체 명령어]
echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc
source ~/.zshrc
vi ~/.zshrc
마무리
M1에 개발환경 구성중인데 귀찮지만 설레는 기분 😏
[앱스토어커넥트-권한별 비교] Cloud signing permission error (0) | 2023.10.09 |
---|---|
[Error] Cannot load underlying module for 'SwiftUI' (4) | 2023.09.03 |
[fastlane] issuerId is required + iTMSTransporter (2) | 2022.10.26 |
[fastlane] sh: xcbeautify: command not found (0) | 2022.10.24 |
[error]Gem:: GemNotFoundException (0) | 2022.09.28 |
댓글 영역