728x90
brew 로 update를 진행하거나 install 진행 시 아래와 같이 에러가 발생하는 경우가 있다
Error: An unexpected error occurred during the `brew link` step
The formula built, but is not symlinked into /usr/local
Permission denied @ dir_s_mkdir - /usr/local/Frameworks
Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks
먼저 ls /usr/local/Frameworks
명령어로 디렉토리가 존재하는지 확인하자
디렉토리가 존재한다면
소유자 권한만 추가해주면된다
아래의 명령어를 수행해서 디렉토리를 생성한 뒤 update 나 install 을 진행하면 설치가 잘 되는 것을 확인할 수 있다
sudo chown -R ${USER} /usr/local/Frameworks
디렉토리가 존재하지 않는다면
ls: /usr/local/Frameworks: No such file or directory
Frameworks
디렉토리를 생성해야 한다
아래의 명령어를 수행해서 디렉토리를 생성한 뒤 update 나 install 을 진행하면 설치가 잘 되는 것을 확인할 수 있다
sudo mkdir /usr/local/Frameworks
728x90
'MacOS' 카테고리의 다른 글
[MacOS] 하나 이상의 항목을 사용 중이기 때문에 변경할 수 없습니다 (0) | 2021.02.21 |
---|---|
[Intellij] Mac에서 Intellij cmd+shift+A 눌렀을때 터미널 켜지는 문제해결 (0) | 2021.01.03 |
[MacOS] 맥 Python 기본 버전 변경하기 (0) | 2020.10.11 |
[MacOS] cask 패키지 업그레이드를 쉽게 brew cu (0) | 2020.03.22 |
[MacOS] Zulu JDK21 설치하는 방법 (Ventura 대응) (0) | 2020.03.22 |
댓글