반응형
brew 로 패키지 설치 시 깨질때 방법
Homebrew and Symlink Issues
if you see this:
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
then do this:
sudo chown -R $(whoami) $(brew --prefix)/*
note the $(brew --prefix)/*
...High Sierra doesn't allow you to change permissions on /user/local directly)
then this:
sudo install -d -o $(whoami) -g admin /usr/local/Frameworks
반응형
'개발' 카테고리의 다른 글
[Java] 리스트 정렬 하기 (0) | 2020.10.31 |
---|---|
[jquery] 속성 값 필터링을 이용하여 객체 가져오기 (0) | 2020.10.30 |
[Data Mining] 데이터마이닝 프로세스 개요 (0) | 2018.03.05 |
[Android] 런타임에 권한 요청 (0) | 2017.03.26 |
트리 (0) | 2015.09.11 |